1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Added way more adjectives

Former-commit-id: 9609234e1c92a3e7be68a045168927635d318d83 [formerly f0ef916fd5731e0e078ab4eb581a41267473a240] [formerly 9a94292167e2490d1be2fc131d0094cf71f9e8c9 [formerly 4c6052771d]]
Former-commit-id: 4dec3374337d2c78e26b3ae03921dd16ae470565 [formerly f01c85ad49033775548e85fe79042861f849a1e9]
Former-commit-id: b1fbef39fc6184c03588e04795e09885670256e4
This commit is contained in:
Zack Scholl 2016-02-14 08:18:00 -05:00
parent 3280eafa4d
commit 3770d658ca
4 changed files with 4904 additions and 1 deletions

View File

@ -0,0 +1 @@
ea35f198d95fca9d951a392df45d2e49789f7a5b

4902
static/text/animals.all Normal file

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@ func init() {
animalsText, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "static/text/animals"))
animals = strings.Split(string(animalsText), ",")
adjectivesText, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "static/text/adjectives"))
adjectives = strings.Split(string(adjectivesText), ",")
adjectives = strings.Split(string(adjectivesText), "\n")
robotsTxtFile, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "static/text/robots.txt"))
robotsTxt = string(robotsTxtFile)
}