Skip to content

Instantly share code, notes, and snippets.

View tonyalaribe's full-sized avatar
🎯
Focusing

Anthony Alaribe tonyalaribe

🎯
Focusing
View GitHub Profile
@lummie
lummie / enum.go
Last active May 2, 2024 13:13
Golang Enum pattern that can be serialized to json
package enum_example
import (
"bytes"
"encoding/json"
)
// TaskState represents the state of task, moving through Created, Running then Finished or Errorred
type TaskState int