hmdeploy/connection/connection.go
2025-04-02 10:20:05 +02:00

9 lines
134 B
Go

package connection
type IConnection interface {
Execute(string) (string, error)
CopyFile(src, dest string) error
Close() error
}