15 lines
187 B
Julia
15 lines
187 B
Julia
![]() |
module Data
|
||
|
|
||
|
export CMUDict, cmudict
|
||
|
|
||
|
deps(path...) = joinpath(@__DIR__, "..", "..", "deps", path...)
|
||
|
|
||
|
function __init__()
|
||
|
mkpath(deps())
|
||
|
end
|
||
|
|
||
|
include("cmudict.jl")
|
||
|
using .CMUDict
|
||
|
|
||
|
end
|