diff --git a/gpanel.go b/gpanel.go index 8b75fea..4fdc328 100644 --- a/gpanel.go +++ b/gpanel.go @@ -5,8 +5,8 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/gpserver" - "github.com/Ennovar/gPanel/pkg/router" + "github.com/kentonh/gPanel/pkg/gpserver" + "github.com/kentonh/gPanel/pkg/router" ) func main() { diff --git a/pkg/api/bundle/create.go b/pkg/api/bundle/create.go index 4bd0ddd..1d985b0 100644 --- a/pkg/api/bundle/create.go +++ b/pkg/api/bundle/create.go @@ -9,10 +9,10 @@ import ( "os" "strconv" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/emailer" - "github.com/Ennovar/gPanel/pkg/encryption" - "github.com/Ennovar/gPanel/pkg/gpaccount" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/emailer" + "github.com/kentonh/gPanel/pkg/encryption" + "github.com/kentonh/gPanel/pkg/gpaccount" "github.com/george-e-shaw-iv/nixtools" ) diff --git a/pkg/api/bundle/delete.go b/pkg/api/bundle/delete.go index c6b8eb9..ee6e8d7 100644 --- a/pkg/api/bundle/delete.go +++ b/pkg/api/bundle/delete.go @@ -7,8 +7,8 @@ import ( "os" "strconv" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/gpaccount" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/gpaccount" "github.com/george-e-shaw-iv/nixtools" ) diff --git a/pkg/api/bundle/list.go b/pkg/api/bundle/list.go index 6720c77..c783bb7 100644 --- a/pkg/api/bundle/list.go +++ b/pkg/api/bundle/list.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/gpaccount" + "github.com/kentonh/gPanel/pkg/gpaccount" ) func List(res http.ResponseWriter, req *http.Request, logger *log.Logger, bundles map[string]*gpaccount.Controller) bool { diff --git a/pkg/api/bundle/ports.go b/pkg/api/bundle/ports.go index 3ffb4f7..2e4ae1a 100644 --- a/pkg/api/bundle/ports.go +++ b/pkg/api/bundle/ports.go @@ -3,7 +3,7 @@ package bundle import ( "os" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func GetPorts(dir string) (error, int, int) { diff --git a/pkg/api/domain/link.go b/pkg/api/domain/link.go index 053a3f7..5dd4449 100644 --- a/pkg/api/domain/link.go +++ b/pkg/api/domain/link.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Link(res http.ResponseWriter, req *http.Request, logger *log.Logger, PublicPort int) bool { diff --git a/pkg/api/domain/list.go b/pkg/api/domain/list.go index 7867496..f6c50e2 100644 --- a/pkg/api/domain/list.go +++ b/pkg/api/domain/list.go @@ -5,7 +5,7 @@ import ( "log" "strconv" "encoding/json" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func List(res http.ResponseWriter, req *http.Request, logger *log.Logger) bool { diff --git a/pkg/api/domain/unlink.go b/pkg/api/domain/unlink.go index 245cc5e..c24b9ff 100644 --- a/pkg/api/domain/unlink.go +++ b/pkg/api/domain/unlink.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Unlink(res http.ResponseWriter, req *http.Request, logger *log.Logger) bool { diff --git a/pkg/api/ip/filter.go b/pkg/api/ip/filter.go index d3370cb..e962896 100644 --- a/pkg/api/ip/filter.go +++ b/pkg/api/ip/filter.go @@ -7,7 +7,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Filter(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/ip/list.go b/pkg/api/ip/list.go index 2993a82..b50e455 100644 --- a/pkg/api/ip/list.go +++ b/pkg/api/ip/list.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func List(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/ip/unfilter.go b/pkg/api/ip/unfilter.go index 21693b2..1394b1a 100644 --- a/pkg/api/ip/unfilter.go +++ b/pkg/api/ip/unfilter.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Unfilter(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/log/read.go b/pkg/api/log/read.go index bb589ec..2a0efcb 100644 --- a/pkg/api/log/read.go +++ b/pkg/api/log/read.go @@ -7,7 +7,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/file" + "github.com/kentonh/gPanel/pkg/file" ) // Read function is accessed from api/logs/read and will attempt to read diff --git a/pkg/api/server/maintenance.go b/pkg/api/server/maintenance.go index 3890aa1..ff67ea9 100644 --- a/pkg/api/server/maintenance.go +++ b/pkg/api/server/maintenance.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/public" + "github.com/kentonh/gPanel/pkg/public" ) // Maintenance function is called from /api/server/maintenance and will place the public server into diff --git a/pkg/api/server/restart.go b/pkg/api/server/restart.go index 8c6df6e..22d4c94 100644 --- a/pkg/api/server/restart.go +++ b/pkg/api/server/restart.go @@ -7,7 +7,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/public" + "github.com/kentonh/gPanel/pkg/public" ) // Restart function is called from /api/server/restart and will attempt to shutdown, either gracefully diff --git a/pkg/api/server/shutdown.go b/pkg/api/server/shutdown.go index f131f84..8cc173b 100644 --- a/pkg/api/server/shutdown.go +++ b/pkg/api/server/shutdown.go @@ -7,7 +7,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/public" + "github.com/kentonh/gPanel/pkg/public" ) // Shutdown function is called from /api/server/shutdown and will attempt to shutdown, either gracefully diff --git a/pkg/api/server/start.go b/pkg/api/server/start.go index dfc1b2b..39776d9 100644 --- a/pkg/api/server/start.go +++ b/pkg/api/server/start.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/public" + "github.com/kentonh/gPanel/pkg/public" ) // Start function is called from /api/server/start and turn the public server on. diff --git a/pkg/api/server/status.go b/pkg/api/server/status.go index 0abc868..b1c5230 100644 --- a/pkg/api/server/status.go +++ b/pkg/api/server/status.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/public" + "github.com/kentonh/gPanel/pkg/public" ) // Status function is called from api/server/status and will return the current status of diff --git a/pkg/api/settings/add_nameserver.go b/pkg/api/settings/add_nameserver.go index 402449e..6fa8242 100644 --- a/pkg/api/settings/add_nameserver.go +++ b/pkg/api/settings/add_nameserver.go @@ -5,7 +5,7 @@ import ( "log" "strconv" "encoding/json" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func AddNameserver(res http.ResponseWriter, req *http.Request, logger *log.Logger) bool { diff --git a/pkg/api/settings/get_admin.go b/pkg/api/settings/get_admin.go index c61de0d..c0eeeea 100644 --- a/pkg/api/settings/get_admin.go +++ b/pkg/api/settings/get_admin.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" "log" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" "encoding/json" ) diff --git a/pkg/api/settings/get_nameservers.go b/pkg/api/settings/get_nameservers.go index ba59b2d..bfabb10 100644 --- a/pkg/api/settings/get_nameservers.go +++ b/pkg/api/settings/get_nameservers.go @@ -4,7 +4,7 @@ import ( "net/http" "log" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" "encoding/json" ) diff --git a/pkg/api/settings/get_smtp.go b/pkg/api/settings/get_smtp.go index 8f2860a..611be48 100644 --- a/pkg/api/settings/get_smtp.go +++ b/pkg/api/settings/get_smtp.go @@ -5,7 +5,7 @@ import ( "log" "strconv" "encoding/json" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func GetSMTP(res http.ResponseWriter, req *http.Request, logger *log.Logger) bool { diff --git a/pkg/api/settings/remove_nameserver.go b/pkg/api/settings/remove_nameserver.go index 788fb4d..b3e3fcb 100644 --- a/pkg/api/settings/remove_nameserver.go +++ b/pkg/api/settings/remove_nameserver.go @@ -4,7 +4,7 @@ import ( "net/http" "log" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" "encoding/json" ) diff --git a/pkg/api/settings/set_admin.go b/pkg/api/settings/set_admin.go index c7e8719..63f097a 100644 --- a/pkg/api/settings/set_admin.go +++ b/pkg/api/settings/set_admin.go @@ -4,7 +4,7 @@ import ( "net/http" "log" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" "encoding/json" ) diff --git a/pkg/api/settings/set_smtp.go b/pkg/api/settings/set_smtp.go index b6862ac..44a95af 100644 --- a/pkg/api/settings/set_smtp.go +++ b/pkg/api/settings/set_smtp.go @@ -5,8 +5,8 @@ import ( "log" "strconv" "encoding/json" - "github.com/Ennovar/gPanel/pkg/emailer" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/emailer" + "github.com/kentonh/gPanel/pkg/database" ) func SetSMTP(res http.ResponseWriter, req *http.Request, logger *log.Logger) bool { diff --git a/pkg/api/subdomain/add.go b/pkg/api/subdomain/add.go index bc25c81..0b29b10 100644 --- a/pkg/api/subdomain/add.go +++ b/pkg/api/subdomain/add.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Add(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/subdomain/list.go b/pkg/api/subdomain/list.go index c9c1119..114bf3a 100644 --- a/pkg/api/subdomain/list.go +++ b/pkg/api/subdomain/list.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func List(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/subdomain/remove.go b/pkg/api/subdomain/remove.go index 9e6e153..24b33e2 100644 --- a/pkg/api/subdomain/remove.go +++ b/pkg/api/subdomain/remove.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Remove(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/user/auth.go b/pkg/api/user/auth.go index ced2fa4..eca3f6c 100644 --- a/pkg/api/user/auth.go +++ b/pkg/api/user/auth.go @@ -10,8 +10,8 @@ import ( "strings" "time" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/encryption" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/encryption" jwt "github.com/dgrijalva/jwt-go" ) diff --git a/pkg/api/user/delete.go b/pkg/api/user/delete.go index 33a3bbb..9616b28 100644 --- a/pkg/api/user/delete.go +++ b/pkg/api/user/delete.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func Delete(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/user/get_secret.go b/pkg/api/user/get_secret.go index b47e165..2ac9b8f 100644 --- a/pkg/api/user/get_secret.go +++ b/pkg/api/user/get_secret.go @@ -1,7 +1,7 @@ // Package user is a child of package api to handle api calls concerning users package user -import "github.com/Ennovar/gPanel/pkg/database" +import "github.com/kentonh/gPanel/pkg/database" // GetSecret is not accessible from the any client side request. It is // only used on the server side to help verify users are who they say they diff --git a/pkg/api/user/list.go b/pkg/api/user/list.go index 3bd4f25..bcec9fc 100644 --- a/pkg/api/user/list.go +++ b/pkg/api/user/list.go @@ -6,7 +6,7 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) func List(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/api/user/register.go b/pkg/api/user/register.go index c4718ef..ec8b03c 100644 --- a/pkg/api/user/register.go +++ b/pkg/api/user/register.go @@ -7,8 +7,8 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/encryption" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/encryption" ) // Register function is accessed by an API call from the webhost root diff --git a/pkg/api/user/update_password.go b/pkg/api/user/update_password.go index 2058b10..911761a 100644 --- a/pkg/api/user/update_password.go +++ b/pkg/api/user/update_password.go @@ -6,8 +6,8 @@ import ( "net/http" "strconv" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/encryption" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/encryption" ) func UpdatePassword(res http.ResponseWriter, req *http.Request, logger *log.Logger, dir string) bool { diff --git a/pkg/database/settings.go b/pkg/database/settings.go index e8e2864..3f7cc38 100644 --- a/pkg/database/settings.go +++ b/pkg/database/settings.go @@ -4,7 +4,7 @@ import ( "encoding/json" "errors" - "github.com/Ennovar/gPanel/pkg/emailer" + "github.com/kentonh/gPanel/pkg/emailer" "github.com/boltdb/bolt" ) diff --git a/pkg/gpaccount/apihandler.go b/pkg/gpaccount/apihandler.go index abf6ee6..cf1e2dd 100644 --- a/pkg/gpaccount/apihandler.go +++ b/pkg/gpaccount/apihandler.go @@ -5,14 +5,14 @@ import ( "net/http" "strings" - "github.com/Ennovar/gPanel/pkg/api/domain" - "github.com/Ennovar/gPanel/pkg/api/ip" - logapi "github.com/Ennovar/gPanel/pkg/api/log" - "github.com/Ennovar/gPanel/pkg/api/server" - "github.com/Ennovar/gPanel/pkg/api/settings" - "github.com/Ennovar/gPanel/pkg/api/ssh" - "github.com/Ennovar/gPanel/pkg/api/subdomain" - "github.com/Ennovar/gPanel/pkg/api/user" + "github.com/kentonh/gPanel/pkg/api/domain" + "github.com/kentonh/gPanel/pkg/api/ip" + logapi "github.com/kentonh/gPanel/pkg/api/log" + "github.com/kentonh/gPanel/pkg/api/server" + "github.com/kentonh/gPanel/pkg/api/settings" + "github.com/kentonh/gPanel/pkg/api/ssh" + "github.com/kentonh/gPanel/pkg/api/subdomain" + "github.com/kentonh/gPanel/pkg/api/user" ) func (con *Controller) apiHandler(res http.ResponseWriter, req *http.Request) (bool, bool) { diff --git a/pkg/gpaccount/authentication.go b/pkg/gpaccount/authentication.go index 16a18bf..4feef82 100644 --- a/pkg/gpaccount/authentication.go +++ b/pkg/gpaccount/authentication.go @@ -8,7 +8,7 @@ import ( "encoding/base64" "encoding/json" - "github.com/Ennovar/gPanel/pkg/api/user" + "github.com/kentonh/gPanel/pkg/api/user" jwt "github.com/dgrijalva/jwt-go" ) diff --git a/pkg/gpaccount/gpaccount.go b/pkg/gpaccount/gpaccount.go index eb87807..8441d85 100644 --- a/pkg/gpaccount/gpaccount.go +++ b/pkg/gpaccount/gpaccount.go @@ -9,7 +9,7 @@ import ( "strconv" "time" - "github.com/Ennovar/gPanel/pkg/public" + "github.com/kentonh/gPanel/pkg/public" ) type Controller struct { diff --git a/pkg/gpaccount/servehttp.go b/pkg/gpaccount/servehttp.go index 4027cb4..063250e 100644 --- a/pkg/gpaccount/servehttp.go +++ b/pkg/gpaccount/servehttp.go @@ -8,7 +8,7 @@ import ( "strings" - "github.com/Ennovar/gPanel/pkg/routing" + "github.com/kentonh/gPanel/pkg/routing" ) // ServeHTTP function routes all requests for the private webhost server. It is used in the main diff --git a/pkg/gpserver/apihandler.go b/pkg/gpserver/apihandler.go index 8922724..d982a55 100644 --- a/pkg/gpserver/apihandler.go +++ b/pkg/gpserver/apihandler.go @@ -8,12 +8,12 @@ import ( "net/http" "strings" - "github.com/Ennovar/gPanel/pkg/api/bundle" - logapi "github.com/Ennovar/gPanel/pkg/api/log" - "github.com/Ennovar/gPanel/pkg/api/server" - "github.com/Ennovar/gPanel/pkg/api/user" - "github.com/Ennovar/gPanel/pkg/api/settings" - "github.com/Ennovar/gPanel/pkg/api/domain" + "github.com/kentonh/gPanel/pkg/api/bundle" + logapi "github.com/kentonh/gPanel/pkg/api/log" + "github.com/kentonh/gPanel/pkg/api/server" + "github.com/kentonh/gPanel/pkg/api/user" + "github.com/kentonh/gPanel/pkg/api/settings" + "github.com/kentonh/gPanel/pkg/api/domain" ) func (con *Controller) apiHandler(res http.ResponseWriter, req *http.Request) (bool, bool) { diff --git a/pkg/gpserver/authentication.go b/pkg/gpserver/authentication.go index be01e16..e38d51c 100644 --- a/pkg/gpserver/authentication.go +++ b/pkg/gpserver/authentication.go @@ -7,7 +7,7 @@ import ( "net/http" "strings" - "github.com/Ennovar/gPanel/pkg/api/user" + "github.com/kentonh/gPanel/pkg/api/user" jwt "github.com/dgrijalva/jwt-go" ) diff --git a/pkg/gpserver/bundles.go b/pkg/gpserver/bundles.go index 26ecc16..e8d3d91 100644 --- a/pkg/gpserver/bundles.go +++ b/pkg/gpserver/bundles.go @@ -4,8 +4,8 @@ import ( "fmt" "io/ioutil" - "github.com/Ennovar/gPanel/pkg/api/bundle" - "github.com/Ennovar/gPanel/pkg/gpaccount" + "github.com/kentonh/gPanel/pkg/api/bundle" + "github.com/kentonh/gPanel/pkg/gpaccount" ) func (con *Controller) detectBundles() error { diff --git a/pkg/gpserver/defaults.go b/pkg/gpserver/defaults.go index 046a066..78061b5 100644 --- a/pkg/gpserver/defaults.go +++ b/pkg/gpserver/defaults.go @@ -3,8 +3,8 @@ package gpserver import ( "fmt" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/encryption" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/encryption" ) func (con *Controller) setDefaults() { diff --git a/pkg/gpserver/gpserver.go b/pkg/gpserver/gpserver.go index 3ea8545..26873bc 100644 --- a/pkg/gpserver/gpserver.go +++ b/pkg/gpserver/gpserver.go @@ -5,7 +5,7 @@ import ( "log" "os" - "github.com/Ennovar/gPanel/pkg/gpaccount" + "github.com/kentonh/gPanel/pkg/gpaccount" ) type Controller struct { diff --git a/pkg/gpserver/servehttp.go b/pkg/gpserver/servehttp.go index f4ae502..6ea3782 100644 --- a/pkg/gpserver/servehttp.go +++ b/pkg/gpserver/servehttp.go @@ -8,7 +8,7 @@ import ( "strings" - "github.com/Ennovar/gPanel/pkg/routing" + "github.com/kentonh/gPanel/pkg/routing" ) func (con *Controller) ServeHTTP(res http.ResponseWriter, req *http.Request) { diff --git a/pkg/public/filter.go b/pkg/public/filter.go index 60e692a..d24918e 100644 --- a/pkg/public/filter.go +++ b/pkg/public/filter.go @@ -3,8 +3,8 @@ package public import ( "net/http" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/networking" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/networking" ) func (con *Controller) Filter(req *http.Request, ftype string) bool { diff --git a/pkg/public/public.go b/pkg/public/public.go index 54fe02a..2dba1b9 100644 --- a/pkg/public/public.go +++ b/pkg/public/public.go @@ -10,7 +10,7 @@ import ( "strconv" "time" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" "golang.org/x/crypto/acme/autocert" ) diff --git a/pkg/public/servehttp.go b/pkg/public/servehttp.go index 739ce1c..df3206d 100644 --- a/pkg/public/servehttp.go +++ b/pkg/public/servehttp.go @@ -12,8 +12,8 @@ import ( "strings" "time" - "github.com/Ennovar/gPanel/pkg/database" - "github.com/Ennovar/gPanel/pkg/routing" + "github.com/kentonh/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/routing" ) func (con *Controller) ServePHP(res http.ResponseWriter, path string) { diff --git a/pkg/router/router.go b/pkg/router/router.go index 7d8da92..3ac90df 100644 --- a/pkg/router/router.go +++ b/pkg/router/router.go @@ -9,7 +9,7 @@ import ( "log" "sync" - "github.com/Ennovar/gPanel/pkg/database" + "github.com/kentonh/gPanel/pkg/database" ) type Router struct {