mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
12 lines
223 B
Go
12 lines
223 B
Go
package gobgp
|
|
|
|
type Config struct {
|
|
Id string
|
|
Name string
|
|
|
|
Host string `ini:"host"`
|
|
Insecure bool `ini:"insecure"`
|
|
TLSCert string `ini:"tls_crt"`
|
|
TLSCommonName string `ini:"tls_common_name"`
|
|
}
|