Added backend

This commit is contained in:
2022-02-06 22:51:36 +01:00
parent 77599e26f8
commit 431cadaeea
35 changed files with 2422 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package database
type Article struct {
Id int `gorm:"primaryKey"`
Title string
Summary string
Image string
Created int64
Modified int64
Link string
Markdown string
Html string
}