14 lines
205 B
Go
14 lines
205 B
Go
package http
|
|
|
|
import (
|
|
"go.uber.org/fx"
|
|
|
|
"base/internal/delivery/http/backoffice"
|
|
"base/internal/delivery/http/platform"
|
|
)
|
|
|
|
var Module = fx.Module(
|
|
"http",
|
|
fx.Provide(platform.New, backoffice.New),
|
|
)
|