mirror of
https://github.com/elyby/chrly.git
synced 2024-11-18 03:03:01 +05:30
10 lines
190 B
Go
10 lines
190 B
Go
|
package interfaces
|
||
|
|
||
|
import (
|
||
|
"elyby/minecraft-skinsystem/api/accounts"
|
||
|
)
|
||
|
|
||
|
type AccountsAPI interface {
|
||
|
AccountInfo(attribute string, value string) (*accounts.AccountInfoResponse, error)
|
||
|
}
|