openamt/pkg/amtrpc/interface.go

7 lines
100 B
Go
Raw Normal View History

2023-03-20 16:28:45 +00:00
package amtrpc
type Interface interface {
CheckAccess() int
Exec(command string) (string, int)
}