16 lines
184 B
Go
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
|
|
}
|