aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage_sqlite.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 16:19:32 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-04 16:19:32 +0200
commit32bea4675dd751c0d07aa1f348b1b7201794d884 (patch)
tree01be1e7ee7b55086a3f278a55cc26964fa20320c /src/storage_sqlite.h
parentstorage_sqlite: refactoring (diff)
downloadcimple-32bea4675dd751c0d07aa1f348b1b7201794d884.tar.gz
cimple-32bea4675dd751c0d07aa1f348b1b7201794d884.zip
sqlite: store new runs in SQLite
Diffstat (limited to 'src/storage_sqlite.h')
-rw-r--r--src/storage_sqlite.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/storage_sqlite.h b/src/storage_sqlite.h
index e9e0581..b133ab8 100644
--- a/src/storage_sqlite.h
+++ b/src/storage_sqlite.h
@@ -20,4 +20,6 @@ void storage_sqlite_settings_destroy(const struct storage_settings *);
int storage_sqlite_create(struct storage *, const struct storage_settings *);
void storage_sqlite_destroy(struct storage *);
+int storage_sqlite_run_create(struct storage *, const char *repo_url, const char *rev);
+
#endif