-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add tui log file #6
Conversation
.gitignore
Outdated
@@ -28,3 +28,6 @@ __debug* | |||
.vscode/ | |||
cattle-drive | |||
dist/ | |||
|
|||
# tui log file | |||
cattle-drive.log |
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.
Add new line
@@ -3,6 +3,7 @@ package constants | |||
import ( | |||
"galal-hussein/cattle-drive/pkg/client" | |||
"galal-hussein/cattle-drive/pkg/cluster" | |||
"os" |
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.
Looks like this file needs to be go fmt'd or run goimports.
@@ -2,6 +2,7 @@ package tui | |||
|
|||
import ( | |||
"context" | |||
"fmt" |
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.
Looks like this file needs to have go fmt / goimport ran on it.
No description provided.