Fix default struct tag

This commit is contained in:
Joel Elkins 2022-07-17 12:00:56 -05:00
parent 0049fb818c
commit 598ed0d427

View File

@ -18,7 +18,7 @@ const (
type Network struct {
Name string
DNS []string
IPv6 bool `default:true`
IPv6 bool `default:"true"`
IPv4Address string `toml:"ipv4_address"`
IPv6Address string `toml:"ipv6_address"`
}
@ -39,7 +39,7 @@ type command string
const (
CREATE command = "create"
START command = "start"
START command = "start"
)
var (