fix missing server interface method HasPermission

This commit is contained in:
Jakob Schrettenbrunner 2017-07-30 20:25:42 +02:00
parent 636e75ae1f
commit 6e18e4a1ce

View File

@ -16,6 +16,8 @@ type Server interface {
Stop() error
Exec(command string) error
Rebuild() error
HasPermission(string, string) bool
}
// Server is a single instance of a Service managed by the panel