mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
chore(netlify): add serverless config and function entry for API
This commit is contained in:
15
netlify/functions/api.go
Normal file
15
netlify/functions/api.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
|
||||
bridge "github.com/vercel/go-bridge/go/bridge"
|
||||
handler "neomovies-api/api"
|
||||
)
|
||||
|
||||
func main() {
|
||||
bridge.Start(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
handler.Handler(w, r.WithContext(context.Background()))
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user