Versions in this module Expand all Collapse all v0 v0.10.0 Jun 1, 2023 v0.9.0 Jun 1, 2023 Changes in this version + type DB struct + func NewDB(dsn string) (DB, error) + func (db DB) CreatePet(name string, age int, kind string) + func (db DB) ListPets() []Pet + func (db DB) Migrate() + type Pet struct + Age int + Kind string + Name string