Skip to content
Snippets Groups Projects
types.go 276 B
Newer Older
  • Learn to ignore specific revisions
  • package design
    
    import . "goa.design/goa/v3/dsl"
    
    var CacheGetRequest = Type("CacheGetRequest", func() {
    	Field(1, "key", String)
    	Field(2, "namespace", String)
    	Field(3, "scope", String) // Initial implementation with a single scope
    	Required("key", "namespace", "scope")
    })