-
Notifications
You must be signed in to change notification settings - Fork 696
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
refactor: move all valkey modules related declarations to module.h
#1489
Conversation
In this commit we move all structures and functions declarations related to Valkey modules from `server.h` to the recently added `module.h` file. This re-organization makes it easier for new contributers to find the valkey modules related code, as well as reducing the compilation times when changes are made to the modules code. Signed-off-by: Ricardo Dias <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## unstable #1489 +/- ##
============================================
- Coverage 70.86% 70.85% -0.02%
============================================
Files 119 119
Lines 64859 64864 +5
============================================
- Hits 45963 45958 -5
- Misses 18896 18906 +10
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Just some minor comments.
Signed-off-by: Ricardo Dias <[email protected]>
Signed-off-by: Ricardo Dias <[email protected]>
Great, I merged so it doesn't block your next PR. :) |
In this commit we move all structures and functions declarations related to Valkey modules from
server.h
to the recently addedmodule.h
file.This re-organization makes it easier for new contributers to find the valkey modules related code, as well as reducing the compilation times when changes are made to the modules code.
Signed-off-by: Ricardo Dias [email protected]