feat: add ssh server

This commit is contained in:
fxiang21
2024-02-01 20:53:29 +08:00
parent 97c08a7ef9
commit 33b27ca712
46 changed files with 12892 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package api
type Authentication interface {
Authenticate() (token string, err error)
}
type Asset interface {
Groups() (any, error)
Lists() (any, error)
}
type Audit interface {
NewSession(data any) error
}
type Core interface {
Authentication
Audit
Asset
}