You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB
Go

package main
import (
"net/http"
7 years ago
//"github.com/spf13/viper"
shorty "github.com/kreativmonkey/shrt/short"
"log"
7 years ago
"fmt"
)
7 years ago
const version = "0.01"
const port = "9090"
const db = "./test.db"
var (
7 years ago
short *shorty.Storage
)
func init() {
var err error
7 years ago
short, err = shorty.Open(db)
if err != nil {
panic(err)
}
7 years ago
/*
viper.SetDefault("ContentDir", "content")
viper.SetDefault("Token", map[string]string{"url": "url", "token": "token"})
viper.SetConfigName("config") // name of config file (without expression)
viper.AddConfigPath("/etc/appname/") // path to look for the config file in
viper.AddConfigPath("$HOME/.appname") // call multiple times to add many search paths
viper.AddConfigPath(".") // optionally look for config in the working directory
err = viper.ReadInConfig() // Find and read the config file
if err != nil { // Handle errors reading the config file
panic(fmt.Errorf("Fatal error config file: %s \n", err))
}*/
}
7 years ago
type shrt struct {
Token string `bson:"token" json:"token"`
URL string `bson:"url" json:"url"`
Date string `bson:"url_ending" json:"url_ending"`
Count int64 `bson:"click" json:"click"`
7 years ago
}
func main() {
router := NewRouter()
7 years ago
http.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir("template/css"))))
http.Handle("/img/", http.StripPrefix("/img/", http.FileServer(http.Dir("template/img"))))
fmt.Printf("Shrt %s started on Port: %s \n", version, port)
log.Fatal(http.ListenAndServe(":"+port, router))
7 years ago
}