15 lines
277 B
Go
15 lines
277 B
Go
package main
|
|
|
|
import (
|
|
internalhttp "github.com/ardeman/project-legalgo-go/internal/api/http"
|
|
pkgconfig "github.com/ardeman/project-legalgo-go/internal/config"
|
|
"go.uber.org/fx"
|
|
)
|
|
|
|
func main() {
|
|
fx.New(
|
|
fx.Provide(internalhttp.Module),
|
|
fx.Invoke(pkgconfig.Router),
|
|
)
|
|
}
|