2016-12-13 05:03:34 +03:00
|
|
|
# static middleware
|
|
|
|
|
|
|
|
[![Build Status](https://travis-ci.org/gin-contrib/static.svg)](https://travis-ci.org/gin-contrib/static)
|
|
|
|
[![codecov](https://codecov.io/gh/gin-contrib/static/branch/master/graph/badge.svg)](https://codecov.io/gh/gin-contrib/static)
|
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/gin-contrib/static)](https://goreportcard.com/report/github.com/gin-contrib/static)
|
|
|
|
[![GoDoc](https://godoc.org/github.com/gin-contrib/static?status.svg)](https://godoc.org/github.com/gin-contrib/static)
|
|
|
|
|
2016-12-13 04:40:49 +03:00
|
|
|
Static middleware
|
2016-12-13 05:03:34 +03:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Start using it
|
|
|
|
|
|
|
|
Download and install it:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ go get github.com/gin-contrib/static
|
|
|
|
```
|
|
|
|
|
|
|
|
Import it in your code:
|
|
|
|
|
|
|
|
```go
|
|
|
|
import "github.com/gin-contrib/static"
|
|
|
|
```
|