Refactoring

This commit is contained in:
stSolo
2022-08-11 16:39:39 +03:00
parent 9563097dcb
commit 39a6f9a1ce
300 changed files with 64 additions and 58 deletions

15
pkg/cloudapi/vins/vins.go Normal file
View File

@@ -0,0 +1,15 @@
package vins
import (
"github.com/rudecs/decort-sdk/interfaces"
)
type Vins struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *Vins {
return &Vins{
client,
}
}