Files
atom/providers/micro_service/config.go
yanghao05 35e8fd6ac5 add go micro_service
add k8s
2023-05-15 19:58:05 +08:00

16 lines
184 B
Go

package micro_service
const DefaultPrefix = "Micro"
type Config struct {
Name string
Version string
Port uint
Tls *Tls
}
type Tls struct {
Cert string
Key string
}