go-paste/main.go

39 lines
771 B
Go
Raw Normal View History

2017-04-14 16:15:07 -06:00
// Package Paste API.
//
// the purpose of this application is to provide an application
// that is using plain go code to define an API
//
// Terms Of Service:
//
// there are no TOS at this moment, use at your own risk we take no responsibility
//
// Schemes: http, https
// Host: paste.sour.is
// BasePath: /
// Version: 0.0.1
// License: MIT http://opensource.org/licenses/MIT
// Contact: Xuu <me@sour.is> https://sour.is
//
// Consumes:
// - application/json
// - text/plain
//
// Produces:
// - application/json
// - text/plain
//
//
// swagger:meta
2017-10-13 16:41:48 -06:00
package main // import "sour.is/x/paste"
2017-04-14 16:15:07 -06:00
import (
2018-02-15 08:01:35 -07:00
"sour.is/go/httpsrv"
2017-05-22 11:13:47 -06:00
_ "sour.is/x/paste/routes"
2017-04-14 16:15:07 -06:00
)
func main() {
if args["serve"] == true {
httpsrv.Run()
}
}