1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-17 01:43:02 +02:00
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2016-04-20 07:32:51 -07:00
parent 2918b44698
commit 1247552c9b
9 changed files with 35 additions and 30 deletions

View File

@ -18,11 +18,11 @@ type (
// Index is the list of index files to be searched and used when serving
// a directory.
// Optional with default value as []string{"index.html"}.
// Optional, with default value as []string{"index.html"}.
Index []string `json:"index"`
// Browse is a flag to enable/disable directory browsing.
// Optional with default value as false.
// Optional, with default value as false.
Browse bool `json:"browse"`
}
)