1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00

Implemented Author model

This commit is contained in:
マリウス 2022-12-30 01:44:17 -05:00
parent 3e83345758
commit 9827a4af86
No known key found for this signature in database
GPG Key ID: 272ED814BF63261F

6
models/author/author.go Normal file
View File

@ -0,0 +1,6 @@
package author
type Author struct {
ID string
Name string
}