mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
6 lines
143 B
Go
6 lines
143 B
Go
|
package internal
|
||
|
|
||
|
// Map is just an alias of the map[string]interface{} type.
|
||
|
// Just like the iris.Map one.
|
||
|
type Map = map[string]interface{}
|