Skip to content

Commit

Permalink
chore(scope): Initialize with iota
Browse files Browse the repository at this point in the history
  • Loading branch information
dkanney committed Feb 20, 2025
1 parent 1d404b7 commit b23e965
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/types/scope/scope.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
type Type uint

const (
Unknown Type = 0
Global Type = 1
Org Type = 2
Project Type = 3
Unknown Type = iota
Global
Org
Project
)

func (s Type) String() string {
Expand Down

0 comments on commit b23e965

Please sign in to comment.