blob: ec0d2858182c2089b38fd1706f3bc38f5ee0628e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// SMITH ( // /
// structs ( )/ /
// by salade )(/ /
// ________________ ( /) /
// ()__)____________))))) :^} /
package main
// config.json content
type Config struct {
Public_key string
Secret_key string
Mirror string
}
// urls to hit on mirror
type Targets struct {
getall string
status string
null string
}
var Endpoints = Targets {
getall: "/sapi/v1/capital/config/getall",
status: "/sapi/v1/account/status",
null: "/null",
}
|