aboutsummaryrefslogtreecommitdiffstats
path: root/gosrc/structs.go
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-04-17 17:52:29 +0200
committersalaaad2 <arthurdurant263@gmail.com>2022-04-17 17:52:29 +0200
commitfd79b09ad0e7d0e3165c70ca0908ec1ac0a7116c (patch)
tree523c531f52d68ecd5bceabf3f950fe21c11391f9 /gosrc/structs.go
parentcool ui and functioning requests, what can a man ask for (v0.0.1) (diff)
downloadsmith-fd79b09ad0e7d0e3165c70ca0908ec1ac0a7116c.tar.gz
smith-fd79b09ad0e7d0e3165c70ca0908ec1ac0a7116c.tar.bz2
smith-fd79b09ad0e7d0e3165c70ca0908ec1ac0a7116c.tar.xz
smith-fd79b09ad0e7d0e3165c70ca0908ec1ac0a7116c.tar.zst
smith-fd79b09ad0e7d0e3165c70ca0908ec1ac0a7116c.zip
smith is cool
Diffstat (limited to 'gosrc/structs.go')
-rw-r--r--gosrc/structs.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/gosrc/structs.go b/gosrc/structs.go
index ac17cf6..ec0d285 100644
--- a/gosrc/structs.go
+++ b/gosrc/structs.go
@@ -16,11 +16,13 @@ type Config struct {
// 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",
}