summaryrefslogtreecommitdiff
path: root/src/query
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-10-03 18:02:03 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-10-03 18:02:03 +0200
commit0d8e11193bf166758c2d9c46190b07b9b76f2958 (patch)
tree5c09229233c0aed54738facfe4946195bc0ae0a8 /src/query
parent00274059ed4db5b0f2be088b0098e376d836f6d2 (diff)
(Broken) still working on it...
Diffstat (limited to 'src/query')
-rw-r--r--src/query/qry_handler.erl1
-rw-r--r--src/query/qry_shim.erl21
2 files changed, 22 insertions, 0 deletions
diff --git a/src/query/qry_handler.erl b/src/query/qry_handler.erl
index deb4e33..8cab69f 100644
--- a/src/query/qry_handler.erl
+++ b/src/query/qry_handler.erl
@@ -24,4 +24,5 @@ start (_YawsParams) ->
ok = btl_handler:start(TimedCachesManagerPid),
ok = map_handler:start(TimedCachesManagerPid),
ok = rst_handler:start(TimedCachesManagerPid),
+ ok = qry_shim:fill_db(),
ok.
diff --git a/src/query/qry_shim.erl b/src/query/qry_shim.erl
new file mode 100644
index 0000000..666f7ec
--- /dev/null
+++ b/src/query/qry_shim.erl
@@ -0,0 +1,21 @@
+-module(qry_shim).
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% EXPORTS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+-export([fill_db/0]).
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% LOCAL FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+-spec fill_db () -> 'ok'.
+fill_db () ->
+ ok.