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), )