Восстановлена логика для доступна к internal API Accounts Ely.by

This commit is contained in:
ErickSkrauch
2017-08-18 01:08:08 +03:00
parent b1dbee2310
commit 4734bfd93c
5 changed files with 352 additions and 16 deletions

9
interfaces/api.go Normal file
View File

@@ -0,0 +1,9 @@
package interfaces
import (
"elyby/minecraft-skinsystem/api/accounts"
)
type AccountsAPI interface {
AccountInfo(attribute string, value string) (*accounts.AccountInfoResponse, error)
}