Skip to content

Instantly share code, notes, and snippets.

@Sajjon
Created August 17, 2020 13:58
Show Gist options
  • Save Sajjon/d2fe5babbe38660b7e5741fc19e02ccc to your computer and use it in GitHub Desktop.
Save Sajjon/d2fe5babbe38660b7e5741fc19e02ccc to your computer and use it in GitHub Desktop.
createWordList
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