Skip to content

Instantly share code, notes, and snippets.

View docwyatt2001's full-sized avatar
😵
Not knowing where to start...

Malcolm White docwyatt2001

😵
Not knowing where to start...
View GitHub Profile
@docwyatt2001
docwyatt2001 / enum.go
Created November 25, 2022 08:16 — forked from lummie/enum.go
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