/ ExchangeTypes / src / ExchangeTypes.jl
ExchangeTypes.jl
 1  module ExchangeTypes
 2  
 3  if get(ENV, "JULIA_NOPRECOMP", "") == "all"
 4      __init__() = begin
 5          include(joinpath(@__DIR__, "module.jl"))
 6          @eval _doinit()
 7      end
 8  else
 9      occursin(string(@__MODULE__), get(ENV, "JULIA_NOPRECOMP", "")) && __precompile__(false)
10      include("module.jl")
11      __init__() = _doinit()
12      include("precompile.jl")
13  end
14  
15  end # module ExchangeTypes