Skip to content

mattn/go-stackbuilder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

go-stackbuilder

Introduction

go-stackbuilder provides perl Plack::Builder like interface. Currently, it support constructor of handlers.

Usage

package main

import (
	"github.com/justinas/nosurf"
	"github.com/keep94/weblogs"
	"github.com/mattn/go-stackbuilder"
	"net/http"
)

func main() {
    // Do something to handle requests

	http.ListenAndServe(":8888", stackbuilder.Build(
		nosurf.New,
		weblogs.Handler,
	))
}

License

MIT

Author

Yasuhiro Matsumoto

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages