Separate type define (#983)
This commit is contained in:
		| @ -9,34 +9,32 @@ import ( | ||||
| 	"net/http" | ||||
| ) | ||||
|  | ||||
| type ( | ||||
| 	Delims struct { | ||||
| type Delims struct { | ||||
| 	Left  string | ||||
| 	Right string | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	HTMLRender interface { | ||||
| type HTMLRender interface { | ||||
| 	Instance(string, interface{}) Render | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	HTMLProduction struct { | ||||
| type HTMLProduction struct { | ||||
| 	Template *template.Template | ||||
| 	Delims   Delims | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	HTMLDebug struct { | ||||
| type HTMLDebug struct { | ||||
| 	Files   []string | ||||
| 	Glob    string | ||||
| 	Delims  Delims | ||||
| 	FuncMap template.FuncMap | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	HTML struct { | ||||
| type HTML struct { | ||||
| 	Template *template.Template | ||||
| 	Name     string | ||||
| 	Data     interface{} | ||||
| 	} | ||||
| ) | ||||
| } | ||||
|  | ||||
| var htmlContentType = []string{"text/html; charset=utf-8"} | ||||
|  | ||||
|  | ||||
| @ -9,15 +9,13 @@ import ( | ||||
| 	"net/http" | ||||
| ) | ||||
|  | ||||
| type ( | ||||
| 	JSON struct { | ||||
| type JSON struct { | ||||
| 	Data interface{} | ||||
| 	} | ||||
| } | ||||
|  | ||||
| 	IndentedJSON struct { | ||||
| type IndentedJSON struct { | ||||
| 	Data interface{} | ||||
| 	} | ||||
| ) | ||||
| } | ||||
|  | ||||
| var jsonContentType = []string{"application/json; charset=utf-8"} | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user