chore(server): move log middleware to internal/server/middlewares/log

This commit is contained in:
Quentin McGaw
2024-08-23 13:46:52 +00:00
parent 540acc915d
commit ff7cadb43b
3 changed files with 29 additions and 17 deletions

View File

@@ -0,0 +1,5 @@
package log
type Logger interface {
Info(message string)
}