1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-02 20:28:38 -04:00

Add initial implementation of accounts

This commit is contained in:
2015-06-27 17:46:06 -04:00
parent 5b71c181fc
commit 3367106e41
2 changed files with 247 additions and 5 deletions

View File

@ -63,6 +63,7 @@ func main() {
servemux.HandleFunc("/session/", SessionHandler)
servemux.HandleFunc("/user/", UserHandler)
servemux.HandleFunc("/security/", SecurityHandler)
servemux.HandleFunc("/account/", AccountHandler)
listener, err := net.Listen("tcp", ":"+strconv.Itoa(port))
if err != nil {