You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for considering contributing to this project! Here are some guidelines to help you get started:
4
+
5
+
## Code Structure
6
+
7
+
Please make sure to follow the existing code structure and organization. This helps maintain consistency and readability across the project.
8
+
9
+
## Testing
10
+
11
+
Ensure that all tests pass before submitting your changes. You can run the tests using the following command:
12
+
13
+
```sh
14
+
go test ./...
15
+
```
16
+
17
+
## Formatting
18
+
19
+
Make sure to format your code before committing. You can format your Go files using the following command:
20
+
21
+
```sh
22
+
go fmt ./...
23
+
```
24
+
25
+
## Pull Requests
26
+
27
+
When submitting a pull request, please include a clear description of the changes and the motivation behind them. Also, make sure to reference any relevant issues.
0 commit comments