Created
August 17, 2020 13:58
-
-
Save Sajjon/d2fe5babbe38660b7e5741fc19e02ccc to your computer and use it in GitHub Desktop.
createWordList
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func createWordList() throws { | |
let pipeline = Pipeline { | |
ScanJob() | |
ParseJob() | |
WordLengthJob() | |
WhitelistedPOSTagsJob() | |
HomonymJob() | |
} | |
let result = try pipeline.work(input: runContext) | |
print("🇸🇪 Swedish BIP39 wordlist: \(result)" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment