1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-11-30 03:55:42 +00:00

thinking about how to do a stand alone web server

This commit is contained in:
Vincent Batts 2013-10-09 09:41:02 -04:00
parent ff0998af4c
commit 9cc9b88d26

View file

@ -2,6 +2,7 @@ package server
import (
"github.com/gorilla/mux"
"github.com/vbatts/imgsrv/config"
"github.com/vbatts/imgsrv/dbutil"
)
@ -10,4 +11,6 @@ type Web struct {
Store dbutil.Util
}
func New(c config.Config) *Web {
return &Web{}
}