mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-08-03 18:03:39 -04:00
20 lines
441 B
Go
20 lines
441 B
Go
package httpserverfx
|
|
|
|
import (
|
|
"github.com/bitmagnet-io/bitmagnet/internal/config/configfx"
|
|
"github.com/bitmagnet-io/bitmagnet/internal/httpserver"
|
|
"github.com/bitmagnet-io/bitmagnet/internal/httpserver/cors"
|
|
"go.uber.org/fx"
|
|
)
|
|
|
|
func New() fx.Option {
|
|
return fx.Module(
|
|
"http_server",
|
|
configfx.NewConfigModule[httpserver.Config]("http_server", httpserver.NewDefaultConfig()),
|
|
fx.Provide(
|
|
httpserver.New,
|
|
cors.New,
|
|
),
|
|
)
|
|
}
|