9 lines
176 B
Go
9 lines
176 B
Go
|
package templater
|
||
|
|
||
|
type SystemUser struct {
|
||
|
UserName string `json:"username"`
|
||
|
Group string `json:"group"`
|
||
|
Home string `json:"home"`
|
||
|
Shell string `json:"shell"`
|
||
|
}
|