|
@@ -9,7 +9,9 @@ import (
|
|
|
func NewApplication(conf application.Config) *application.App {
|
|
|
|
|
|
apiConfig := conf.ApiConfig
|
|
|
- apiInstance := api.New(api.WithUrlPrefix(apiConfig.UrlPrefix), api.WithPort(apiConfig.Port))
|
|
|
+ apiInstance := api.New(api.WithUrlPrefix(apiConfig.UrlPrefix),
|
|
|
+ api.WithPort(apiConfig.Port),
|
|
|
+ api.WithSkipPaths(apiConfig.LogSkipPaths...))
|
|
|
|
|
|
|
|
|
infrastructureConfig := new(infrastructure.Config)
|