I've been trying to deploy my go app on Google App Engine but I'm a bit stuck on how to make it include my seed-data files from a relative directory.
Project structure is:
- project
 |- cmd
 |    |- main.go
 |    |- app.yaml
 |
 |- seed-data
      |- foo.json
It works fine if I put foo.json next to main.go & app.yaml but how to I keep the structure and configure it to include the seed file from ../seed-data/foo.json?