fastbin/internal/pkg/paste/paste.go
2024-10-26 09:17:15 +05:30

11 lines
123 B
Go

package paste
import (
"gorm.io/gorm"
)
type Paste struct {
gorm.Model
ID string `gorm:"primaryKey"`
Text string
}