mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
Go-Json-Rest is a thin layer on top of net/http that helps building RESTful JSON APIs easily. It provides fast URL routing using a Trie based implementation, and helpers to deal with JSON requests and responses. It is not a high-level REST framework that transparently maps HTTP requests to procedure calls, on the opposite, you constantly have access to the underlying net/http objects. WWW: https://github.com/ant0ine/go-json-rest/
18 lines
450 B
Makefile
18 lines
450 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= go-json-rest
|
|
PORTVERSION= 20140226
|
|
CATEGORIES= devel
|
|
MASTER_SITES= LOCAL/zi/ \
|
|
http://mirrors.rit.edu/zi/
|
|
|
|
MAINTAINER= lattera@gmail.com
|
|
COMMENT= Quick and easy way to setup a RESTful JSON API
|
|
|
|
GO_PKGNAME= github.com/ant0ine/go-json-rest
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-master
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/lang/go/files/bsd.go.mk"
|
|
.include <bsd.port.post.mk>
|