I’ve taken the first step toward converting my Python code to Go!
I’ve written my first API: /ping.
In the process, I’ve learned the basics of using Gin, GORM, and Goose.
To ensure a seamless database migration, I exported only the schema from the original database. After deleting the Alembic version table, I wrote the schema to a Goose migration file and manually added the Goose version information. This way, I can use the data directly.
Log in to leave a comment