init commit

This commit is contained in:
Jacob Payne
2023-03-20 09:28:45 -07:00
commit ce291e1a98
14 changed files with 692 additions and 0 deletions

6
pkg/amtrpc/interface.go Normal file
View File

@@ -0,0 +1,6 @@
package amtrpc
type Interface interface {
CheckAccess() int
Exec(command string) (string, int)
}