mirror of
https://github.com/ThisTine/Snip.git
synced 2026-08-18 23:18:47 +07:00
23 lines
953 B
Go
23 lines
953 B
Go
package service
|
|
|
|
// Curated pools for memorable codes, mirroring the frontend's set.
|
|
var (
|
|
adjectives = []string{
|
|
"amber", "brave", "calm", "clever", "cosmic", "crisp", "dawn", "eager",
|
|
"fizzy", "gentle", "happy", "honey", "ivory", "jolly", "keen", "lucky",
|
|
"mellow", "noble", "olive", "plush", "quartz", "rapid", "sunny", "swift",
|
|
"teal", "tidal", "vivid", "warm", "zesty", "zen",
|
|
}
|
|
nouns = []string{
|
|
"otter", "falcon", "maple", "comet", "pixel", "harbor", "meadow", "ember",
|
|
"willow", "lantern", "pebble", "cactus", "marble", "puffin", "ledger",
|
|
"cobra", "violet", "thistle", "acorn", "domino", "compass", "raven",
|
|
"saffron", "juniper", "lotus", "mango", "narwhal", "orchid", "pelican",
|
|
"quokka", "robin", "sparrow", "topaz", "umbra", "walrus", "yarrow", "zephyr",
|
|
}
|
|
verbs = []string{
|
|
"loop", "dash", "soar", "drift", "glide", "spark", "leap", "flow",
|
|
"zoom", "hop", "skip", "roam", "bounce", "swirl", "dive", "climb",
|
|
}
|
|
)
|