openamt/pkg/amtrpc/interface.go
2023-03-21 10:30:41 -07:00

7 lines
100 B
Go

package amtrpc
type Interface interface {
CheckAccess() int
Exec(command string) (string, int)
}