stubbs out errors, adds mask and unmask to scope

This commit is contained in:
Tai Groot
2021-05-14 14:46:38 -07:00
parent 50f85eb623
commit 7762c3af12
3 changed files with 27 additions and 0 deletions

View File

@@ -49,6 +49,17 @@ func IsEnabled(unit string) (bool, error) {
func DaemonReload(unit string) error {
return nil
}
//TODO
func Show(unit string, property string) (string, error) {
return "", nil
}
//TODO
func Mask(unit string) error {
return nil
}
func Unmask(unit string) error {
return nil
}