/framework/mv.go

http://github.com/sut-go/gon · Go · 9 lines · 7 code · 2 blank · 0 comment · 0 complexity · 37f835fbbe402877b2246490f9c90e8b MD5 · raw file

  1. package mv
  2. type Model map[string]interface{}
  3. type View string
  4. func (v View) String() string {
  5. return string(v)
  6. }
  7. type Params map[string]string