mirror of
https://github.com/elyby/chrly.git
synced 2024-11-17 18:52:58 +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)
|
|
}
|