mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-11 17:46:48 +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
|
||
|
}
|