blob: ac17cf6117bdb7232c68339af8922fcb02230330 (
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
|
// 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
null string
}
var Endpoints = Targets {
getall: "/sapi/v1/capital/config/getall",
null: "/null",
}
|