Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eagletmt/revision_plate-golang
Serve application's REVISION
https://github.com/eagletmt/revision_plate-golang
Last synced: 30 days ago
JSON representation
Serve application's REVISION
- Host: GitHub
- URL: https://github.com/eagletmt/revision_plate-golang
- Owner: eagletmt
- License: mit
- Created: 2015-03-24T15:35:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T15:46:49.000Z (over 9 years ago)
- Last Synced: 2024-06-20T22:35:06.352Z (5 months ago)
- Language: Go
- Size: 141 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# revision_plate-golang
[![Build Status](https://travis-ci.org/eagletmt/revision_plate-golang.svg?branch=master)](https://travis-ci.org/eagletmt/revision_plate-golang)Serve application's REVISION.
Golang version of [revision_plate](https://github.com/sorah/revision_plate) .
## Usage
```go
import (
"net/http""github.com/eagletmt/revision_plate-golang"
)func NewHandler() http.Handler {
mux := http.NewServeMux()
mux.Handle("/site/sha", revision_plate.New("REVISION"))
return mux
}
```