Not impl endpoints

This commit is contained in:
bel
2020-04-12 16:56:14 +00:00
parent 79600941be
commit 0b4ecd1916
23 changed files with 213 additions and 0 deletions

7
server/balance/read.go Normal file
View File

@@ -0,0 +1,7 @@
package balance
import "net/http"
func Read(w http.ResponseWriter, r *http.Request) {
http.Error(w, "not impl", http.StatusNotImplemented)
}

View File

@@ -0,0 +1,7 @@
package balance
type ReadRequest struct {
Accounts []string `json:"accounts"`
Start int64 `json:"start"`
Stop int64 `json:"stop"`
}

View File

@@ -0,0 +1,3 @@
package balance
type ReadResponse map[string]map[int64]float32

View File

@@ -0,0 +1 @@
package balance

View File

@@ -0,0 +1 @@
package balance