11 lines
123 B
Go
11 lines
123 B
Go
package paste
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Paste struct {
|
|
gorm.Model
|
|
ID string `gorm:"primaryKey"`
|
|
Text string
|
|
}
|