コード例 #1
0
ファイル: futfut.go プロジェクト: clausthrane/futfut
func WebApp() http.Handler {
	remote := cachingfacade.New(dsb.NewDSBFacade())
	return WebAppWithFacade(remote)
}
コード例 #2
0
ファイル: stationservice.go プロジェクト: clausthrane/futfut
// NewDSBStationService returns a new StationService backed by a default DSBFacade
func NewDSBStationService() StationsService {
	return New(dsb.NewDSBFacade())
}