Files
fn-serverless/main.go
2017-05-29 17:10:47 -07:00

16 lines
249 B
Go

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