started working on the templating system
[VSCPweb/.git] / go.mod
1 module VSCPweb
2
3 go 1.19
4
5 require github.com/go-chi/chi/v5 v5.0.7
6
7 require healthHandlers v0.0.0
8
9 replace healthHandlers v0.0.0 => ./handlers/health/
10
11 require controllerHandlers v0.0.0
12
13 replace controllerHandlers v0.0.0 => ./handlers/controller/
14
15 require managementHandlers v0.0.0
16
17 replace managementHandlers v0.0.0 => ./handlers/management/
18
19 require virtualAPIHandlers v0.0.0
20
21 replace virtualAPIHandlers v0.0.0 => ./handlers/virtualapi/
22
23 require staticHandlers v0.0.0
24
25 require (
26         github.com/keegancsmith/rpc v1.1.0 // indirect
27         github.com/stamblerre/gocode v1.0.0 // indirect
28         golang.org/x/mod v0.12.0 // indirect
29         golang.org/x/sys v0.10.0 // indirect
30         golang.org/x/tools v0.11.0 // indirect
31 )
32
33 replace staticHandlers v0.0.0 => ./handlers/static/