8357d9d76e
- All 7 pages rewritten: Dashboard, Terminal, Snippets, Keychain, SFTP, Settings, Brief - Apply consistent Lumina glassmorphic theme (rounded-2xl, shadows, borders, tracking) - Fix SVG icons not rendering — return template.HTML instead of string - Fix Alpine x-data scoping: terminal tabs, SFTP modals, snippet tag buttons - Fix dashboard search sending literal ?q=... - Rebuild CSS with all new Tailwind classes (62KB) - Add .air.toml with hot-reload config, docs/PERBAIKANUI.md checklist - Remove unused backup partials
14 lines
386 B
Go
14 lines
386 B
Go
package model
|
|
|
|
type Snippet struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Content string `json:"content"`
|
|
Language string `json:"language"`
|
|
Description string `json:"description"`
|
|
Collection string `json:"collection"`
|
|
Icon string `json:"icon"`
|
|
Tags []string `json:"tags"`
|
|
CreatedAt string `json:"createdAt"`
|
|
}
|