Files
fn-serverless/main.go
2017-05-15 11:00:15 -07:00

16 lines
242 B
Go

package main
import (
"context"
"github.com/treeder/functions/api/server"
)
func main() {
ctx := context.Background()
funcServer := server.NewFromEnv(ctx)
// Setup your custom extensions, listeners, etc here
funcServer.Start(ctx)
}