I'm trying to deploy an API on AppEngine but I'm not sure why it's not 
working, here's an extract of the code: 

package main 

import (
    "encoding/json"
    "io/ioutil"
    "net/http"
    "fmt"

    "google.golang.org/appengine"
)


func main () {
    InitPubSub()

    http.HandleFunc("/", HandlerBase)
    http.HandleFunc("/user", HandlerUser)
    http.HandleFunc("/event", HandlerEvent)

    appengine.Main()
}

I'm getting the following error when I try to deploy the app (gcloud app 
deploy): main.go:9: can't find import: "google.golang.org/appengine"

I've followed the installation guide: 
https://cloud.google.com/appengine/docs/standard/go/download

And downloaded the appengine package: go get google.golang.org/appengine

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/97543508-bc12-49e9-9815-c2cfab275c93%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to