1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

11 lines
222 B
Go
Raw Normal View History

2019-01-08 10:15:53 +01:00
package gobgp;
type Config struct {
Id string
Name string
Host string `ini:"host"`
Insecure bool `ini:"insecure"`
2019-05-09 11:17:43 +02:00
TLSCert string `ini:"tls_crt"`
TLSCommonName string `ini:"tls_common_name"`
2019-01-08 10:15:53 +01:00
}