Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Felix 11 improvement refactor code core #38

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .coderabbit.yaml

This file was deleted.

1 change: 1 addition & 0 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@

// Start API server
go startAPIServer(interactoAPI, jwtMiddleware)
logger.Log.Info("Application is now running. Press CTRL-C to exit.")

// Wait for termination signal
waitForSignal()
Expand All @@ -99,7 +100,7 @@
}
}

func startAPIServer(interactor interactor.APInteractor, jwtMiddleware middleware.JWTAuth) {

Check failure on line 103 in cmd/main.go

View workflow job for this annotation

GitHub Actions / Lint and Test

The name 'interactor' shadows an import name
httpServer := api.NewServer(interactor, jwtMiddleware)
httpServer.Initialize()
}
Expand Down
Loading