Skip to content

Commit c4407d2

Browse files
committed
Refactor import statement formatting in runtime.go: Update import section to use grouped parentheses for better readability and consistency with Go conventions. This change enhances code clarity and aligns with standard formatting practices.
1 parent a2c00de commit c4407d2

File tree

3 files changed

+84
-1
lines changed

3 files changed

+84
-1
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help us improve
4+
title: '[BUG] '
5+
labels: ['bug', 'needs-triage']
6+
assignees: ''
7+
---
8+
9+
## Bug Description
10+
A clear and concise description of what the bug is.
11+
12+
## To Reproduce
13+
Steps to reproduce the behavior:
14+
1. Go to '...'
15+
2. Click on '....'
16+
3. Scroll down to '....'
17+
4. See error
18+
19+
## Expected Behavior
20+
A clear and concise description of what you expected to happen.
21+
22+
## Actual Behavior
23+
A clear and concise description of what actually happened.
24+
25+
## Screenshots
26+
If applicable, add screenshots to help explain your problem.
27+
28+
## Environment
29+
- OS: [e.g. macOS, Linux, Windows]
30+
- Go Version: [e.g. 1.21.0]
31+
- Quiver Version: [e.g. 1.0.0]
32+
- Architecture: [e.g. amd64, arm64]
33+
34+
## Additional Context
35+
Add any other context about the problem here.
36+
37+
## Logs
38+
If applicable, add relevant log output here.
39+
40+
```
41+
Paste logs here
42+
```
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for this project
4+
title: '[FEATURE] '
5+
labels: ['enhancement', 'needs-triage']
6+
assignees: ''
7+
---
8+
9+
## Feature Description
10+
A clear and concise description of what you want to happen.
11+
12+
## Problem Statement
13+
Is your feature request related to a problem? Please describe.
14+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
15+
16+
## Proposed Solution
17+
Describe the solution you'd like
18+
A clear and concise description of what you want to happen.
19+
20+
## Alternative Solutions
21+
Describe alternatives you've considered
22+
A clear and concise description of any alternative solutions or features you've considered.
23+
24+
## Use Cases
25+
Describe the specific use cases for this feature:
26+
1. Use case 1
27+
2. Use case 2
28+
3. Use case 3
29+
30+
## Acceptance Criteria
31+
- [ ] Criterion 1
32+
- [ ] Criterion 2
33+
- [ ] Criterion 3
34+
35+
## Additional Context
36+
Add any other context or screenshots about the feature request here.
37+
38+
## Implementation Notes
39+
Any technical considerations or implementation details you'd like to share.

internal/infrastructure/runtime/runtime.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package runtime
22

3-
import "context"
3+
import (
4+
"context"
5+
)
46

57
type Runtime struct {
68
}

0 commit comments

Comments
 (0)