mirror of
https://github.com/go-nunu/nunu-layout-advanced.git
synced 2025-09-27 04:45:52 +08:00
14 lines
298 B
Go
14 lines
298 B
Go
package router
|
|
|
|
import (
|
|
"github.com/go-nunu/nunu-layout-advanced/internal/handler"
|
|
"github.com/go-nunu/nunu-layout-advanced/pkg/jwt"
|
|
"github.com/go-nunu/nunu-layout-advanced/pkg/log"
|
|
)
|
|
|
|
type RouterDeps struct {
|
|
Logger *log.Logger
|
|
JWT *jwt.JWT
|
|
UserHandler *handler.UserHandler
|
|
}
|