1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-07-01 12:08:37 -04:00

Add basic implementation of securities

This commit is contained in:
2015-06-27 08:31:38 -04:00
parent 0f393d2fbb
commit 5b71c181fc
3 changed files with 85 additions and 1 deletions

View File

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