mirror of
https://github.com/vbatts/imgsrv.git
synced 2024-11-27 10:35:41 +00:00
14 lines
154 B
Go
14 lines
154 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"github.com/gorilla/mux"
|
||
|
"github.com/vbatts/imgsrv/dbutil"
|
||
|
)
|
||
|
|
||
|
type Web struct {
|
||
|
Router *mux.Router
|
||
|
Store dbutil.Util
|
||
|
}
|
||
|
|
||
|
|