86 lines
553 B
Julia
86 lines
553 B
Julia
module GeneralUtils
|
|
|
|
|
|
export # struct
|
|
# mqttClientInstance,
|
|
# function
|
|
noNegative!, randomWithProb, randomChoiceWithProb, findIndex, limitvalue
|
|
|
|
include("util.jl")
|
|
using .util
|
|
|
|
include("dbUtil.jl")
|
|
using .dbUtil
|
|
|
|
include("communication.jl")
|
|
using .communication
|
|
|
|
include("llmUtil.jl")
|
|
using .llmUtil
|
|
|
|
include("interface.jl")
|
|
using .interface
|
|
|
|
|
|
#------------------------------------------------------------------------------------------------100
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end # generalUtils |