Files
openamt/pkg/amtrpc/interface.go

7 lines
100 B
Go
Raw Normal View History

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