package
Version:
v0.1.2
Opens a new window with list of versions in this module.
Published: Jan 10, 2022
License: GPL-3.0
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Base struct {
ID uuid.UUID `json:"id" gorm:"type:uuid;default:gen_random_uuid()"`
CreatedAt time.Time `json:"created_at" gorm:"created_at"`
UpdatedAt time.Time `json:"updated_at" gorm:"updated_at"`
DeletedAt time.Time `json:"deleted_at" gorm:"deleted_at" sql:"index"`
}
type HandlerEnv struct {
DB *gorm.DB
}
type Paste struct {
Base
Body string `json:"body" gorm:"body"`
Name string `json:"name" gorm:"name"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.