doc.go
1/*
2Package vfsgen takes an http.FileSystem (likely at `go generate` time) and
3generates Go code that statically implements the provided http.FileSystem.
4
5Features:
6
7- Efficient generated code without unneccessary overhead.
8
9- Uses gzip compression internally (selectively, only for files that compress well).
10
11- Enables direct access to internal gzip compressed bytes via an optional interface.
12
13- Outputs `gofmt`ed Go code.
14*/
15package vfsgen