# bindata **Repository Path**: gricks/bindata ## Basic Information - **Project Name**: bindata - **Description**: bindata - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-01-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bindata ``` bindata -path=data -package=main -gofile=bindata.go ``` # example ``` package main import ( "log" "net/http" ) func main() { http.Handle("/", http.FileServer(FileSystem())) err := http.ListenAndServe(":8080", nil) if err != nil { log.Fatal("ListenAndServe: ", err) } } ```