Skip to content

Instantly share code, notes, and snippets.

@jquiterio
Last active October 2, 2022 08:28
Show Gist options
  • Save jquiterio/da3c5a6e15f0de0d628ba52edcb41691 to your computer and use it in GitHub Desktop.
Save jquiterio/da3c5a6e15f0de0d628ba52edcb41691 to your computer and use it in GitHub Desktop.
import (
"github.com/jquiterio/uuid"
)
var Planets []Planet
var Galaxies []Galaxy
type Planet {
ID uuid
Name string
GalaxyID uuid
}
type Galaxy {
ID uuid
Name string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment