github.com/qiniu/dyn@v1.3.0/proto/var.go (about)

     1  package proto
     2  
     3  // ----------------------------------------------------------
     4  
     5  const (
     6  	Fmttype_Invalid = -1
     7  	Fmttype_Json    = 1
     8  	Fmttype_Form    = 2
     9  	Fmttype_Text    = 3
    10  	Fmttype_Jsonstr = 4 // 在json的字符串内
    11  )
    12  
    13  // ----------------------------------------------------------
    14  
    15  type Var struct {
    16  	Key string
    17  }
    18  
    19  // ----------------------------------------------------------