diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-13 21:03:34 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-13 21:07:54 +0200 |
commit | f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5 (patch) | |
tree | 7d9fe5031671cdf5fd8da3e031966c72a358942e /routes | |
parent | f13a07aa433298de91e1c4aff68f72be6d851be2 (diff) | |
download | mdir-f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5.tar.gz mdir-f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5.tar.bz2 mdir-f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5.zip |
feat: Add poor implementation for the worker
This is just me testing a bit how doworker works, while I learn of
go/gin in the process.
Diffstat (limited to 'routes')
-rw-r--r-- | routes/routes.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/routes.go b/routes/routes.go index 118a4a5..d78acc7 100644 --- a/routes/routes.go +++ b/routes/routes.go @@ -1,8 +1,8 @@ package routes import ( + "git.sr.ht/~gabrielgio/midr/controller" "github.com/gin-gonic/gin" - "gitlab.com/gabrielgio/midr/controller" ) func HandleRequests() { |