mirror of
https://github.com/taigrr/systemctl.git
synced 2026-03-09 00:14:38 -07:00
16 lines
198 B
Go
16 lines
198 B
Go
//go:build linux
|
|
|
|
package systemctl
|
|
|
|
type Options struct {
|
|
UserMode bool
|
|
}
|
|
|
|
type Unit struct {
|
|
Name string
|
|
Load string
|
|
Active string
|
|
Sub string
|
|
Description string
|
|
}
|