Files
fn-serverless/api/server/defaultexts/defaultexts.go
Reed Allman 1cdb47d6e9 server, examples, extensions lint compliant (#1109)
these are all automated changes suggested by golint
2018-07-04 15:23:15 +01:00

17 lines
634 B
Go

// Package defaultexts are the extensions that are auto-loaded in to the
// default fnserver binary included here as a package to simplify inclusion in
// testing
package defaultexts
import (
// import all datastore/log/mq modules for runtime config
_ "github.com/fnproject/fn/api/datastore/sql"
_ "github.com/fnproject/fn/api/datastore/sql/mysql"
_ "github.com/fnproject/fn/api/datastore/sql/postgres"
_ "github.com/fnproject/fn/api/datastore/sql/sqlite"
_ "github.com/fnproject/fn/api/logs/s3"
_ "github.com/fnproject/fn/api/mqs/bolt"
_ "github.com/fnproject/fn/api/mqs/memory"
_ "github.com/fnproject/fn/api/mqs/redis"
)