Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 373 Bytes

File metadata and controls

20 lines (17 loc) · 373 Bytes

Code style

Logging errors

Use log instead of fmt for logging errors

// ----------- bad
fmt.Print("Error text")

// ----------- good
log.Print("Error text")

Environment variables

Inform team members when new environment variables are added

// example
@Egor @Igor @Vitalik @Kirill, new environment variable `API_KEY` was added