1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2024-09-21 04:10:05 -04:00
moneygo/util.go

18 lines
288 B
Go
Raw Normal View History

2015-06-25 22:36:58 -04:00
package main
import (
"fmt"
"net/http"
"strconv"
"strings"
)
func GetURLID(url string) (int64, error) {
pieces := strings.Split(strings.Trim(url, "/"), "/")
return strconv.ParseInt(pieces[len(pieces)-1], 10, 0)
}
func WriteSuccess(w http.ResponseWriter) {
fmt.Fprint(w, "{}")
}