9 lines
107 B
Go
9 lines
107 B
Go
|
package annotation
|
||
|
|
||
|
type ScopeType int
|
||
|
|
||
|
const (
|
||
|
ScopeTypeSingleton ScopeType = iota
|
||
|
ScopeTypeTransiant
|
||
|
)
|