mirror of
https://github.com/clastix/kamaji.git
synced 2026-08-26 00:47:20 +00:00
14 lines
205 B
Go
14 lines
205 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package routes
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
type Route interface {
|
|
GetPath() string
|
|
GetObject() runtime.Object
|
|
}
|