Files

14 lines
214 B
Go
Raw Permalink Normal View History

2024-10-01 11:15:36 +03:00
package api
2024-10-02 12:14:31 +03:00
import "repository.basistech.ru/BASIS/dynamix-standard-go-sdk/interfaces"
2024-10-01 11:15:36 +03:00
type API struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *API {
return &API{
client: client,
}
}