Skip to content

Instantly share code, notes, and snippets.

View Henkoglobin's full-sized avatar
🐤
Preparing.

Henrik Ilgen Henkoglobin

🐤
Preparing.
View GitHub Profile
@lummie
lummie / enum.go
Last active June 16, 2025 08:38
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