mirror of
https://github.com/kairos-io/openamt.git
synced 2025-08-23 14:38:50 +00:00
7 lines
100 B
Go
7 lines
100 B
Go
|
package amtrpc
|
||
|
|
||
|
type Interface interface {
|
||
|
CheckAccess() int
|
||
|
Exec(command string) (string, int)
|
||
|
}
|