mirror of
https://github.com/donl/gPanel.git
synced 2026-06-30 06:12:06 -06:00
10 lines
No EOL
241 B
Go
10 lines
No EOL
241 B
Go
// Package nixtools is a toolkit for various linux
|
|
// system operations.
|
|
package nixtools
|
|
|
|
// Type user is a struct that has functions attached to
|
|
// it that require a username to properly carry out.
|
|
type User struct {
|
|
ID int
|
|
Name string
|
|
} |