systemctl/structs.go
2024-08-08 15:37:04 -07:00

14 lines
180 B
Go

package systemctl
type Options struct {
UserMode bool
}
type Unit struct {
Name string
Load string
Active string
Sub string
Description string
}