mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
22 lines
300 B
Go
22 lines
300 B
Go
package provided
|
|||
|
|||
import (
|
|||
"github.com/caos/orbos/pkg/tree"
|
|||
)
|
|||
|
|||
type Current struct {
|
|||
Common *tree.Common `yaml:",inline"`
|
|||
Current struct {
|
|||
URL string
|
|||
Port string
|
|||
}
|
|||
}
|
|||
|
|||
func (c *Current) GetURL() string {
|
|||
return c.Current.URL
|
|||
}
|
|||
|
|||
func (c *Current) GetPort() string {
|
|||
return c.Current.Port
|
|||
}
|