cfg/example/example.cue

25 lines
406 B
Plaintext

#Address: {
country: string
phone: string
state: string
street: string
zip: string
}
address: #Address
admins: [...string]
email: string
home: string
username: string
address: {
country: "USA"
phone: "123-456-7890"
state: "MT"
street: "123"
zip: "12345"
}
admins: ["jolheiser", "admin"]
email: "jolheiser@example.com"
home: "/home/jolheiser"
username: "jolheiser"