github.com/arduino/arduino-cloud-cli@v0.0.0-20240517070944-e7a449561083/command/tag/resource.go (about)

     1  package tag
     2  
     3  // ResourceType specifies which resource the
     4  // tag command refers to.
     5  // Valid resources are the entities of the
     6  // cloud that have a 'tags' field.
     7  type ResourceType int
     8  
     9  const (
    10  	None ResourceType = iota
    11  	Device
    12  	Thing
    13  )