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
refactor(chat): remove unused imports
Removed the unused imports "encoding/json" and "log" from the chat.go file. This cleanup improves code readability and reduces unnecessary dependencies.
refactor(backend): add initialization method for askCmd struct
Introduces an `init` method in the `askCmd` struct to handle setup logic, improving code readability and separation of concerns. The method checks if standard input is attached and sets the `Once` flag accordingly.