// Comments are kept :) type ComplexType map[string]map[uint16]*uint32 type UserRole = string const ( UserRoleDefault UserRole = "viewer" UserRoleEditor UserRole = "editor" // Line comments are also kept ) type UserEntry struct { // Instead of specifying `tstype` we could also declare the typing // for uuid.NullUUID in the config file. ID uuid.NullUUID `json:"id" tstype:"string | null"` Preference

