Skip to content

Instantly share code, notes, and snippets.

View DecodeWorms's full-sized avatar

Musa Abdulhameed DecodeWorms

View GitHub Profile
@DecodeWorms
DecodeWorms / enum.go
Created March 11, 2022 08:02 — 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