PSBoardDataBase/src/PSBoardDataBase.jl
Wataru Otsubo eba8d8f395 new: create tables & add campaigns, runs, ps_boards, single run results
- currently, test automatically opens sqlitebrowser
- ext package is not well checked
2024-09-12 20:26:38 +09:00

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