googlearchive / cloud-functions-go

Unofficial Native Go Runtime for Google Cloud Functions
Apache License 2.0
423 stars 44 forks source link

currently only allow one main.go #15

Closed albertog closed 6 years ago

albertog commented 6 years ago

I have tried to compile multiple .go files with make & make test and throw a error instead if I use go run main.go my_other_code.go work ok, so I think is a matter of make stript. Thanks

iangudger commented 6 years ago

It might be worth creating a new package for your code. That was what I had in mind. Otherwise, you can modify the makefile to include your additional files.

albertog commented 6 years ago

thanks I have modified only was for alert for future release.

iangudger commented 6 years ago

I have no specific plans to address this.