This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
api/schemas.go
2022-12-17 00:11:33 +01:00

30 lines
377 B
Go

package main
import (
"time"
"gorm.io/gorm"
)
type Quote struct {
gorm.Model
ID string `gorm:"primaryKey"`
date time.Time
tags []string
}
type QuoteLine struct {
gorm.Model
author string
content string
}
type Image struct {
gorm.Model
id string
title string
description string
date time.Time
place string
link string
}