diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 16:19:32 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-04 16:19:32 +0200 |
commit | 32bea4675dd751c0d07aa1f348b1b7201794d884 (patch) | |
tree | 01be1e7ee7b55086a3f278a55cc26964fa20320c /src/storage_sqlite.h | |
parent | storage_sqlite: refactoring (diff) | |
download | cimple-32bea4675dd751c0d07aa1f348b1b7201794d884.tar.gz cimple-32bea4675dd751c0d07aa1f348b1b7201794d884.zip |
sqlite: store new runs in SQLite
Diffstat (limited to '')
-rw-r--r-- | src/storage_sqlite.h | 2 |
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 |