mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-07 21:45:43 +09:00
- currently, test automatically opens sqlitebrowser - ext package is not well checked
15 lines
215 B
Julia
15 lines
215 B
Julia
module PSBoardDataBase
|
|
|
|
using SQLite
|
|
using DBInterface
|
|
using Tables
|
|
using DataFrames
|
|
using Dates
|
|
|
|
include("create_table.jl")
|
|
|
|
include("import_data.jl")
|
|
|
|
greet() = print("Hello World!")
|
|
|
|
end # module PSBoardDataBase
|