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.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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/storage.h b/src/storage.h index 139dcdd..0dcd2f9 100644 --- a/src/storage.h +++ b/src/storage.h @@ -33,4 +33,6 @@ struct storage { int storage_create(struct storage *, const struct storage_settings *); void storage_destroy(struct storage *); +int storage_run_create(struct storage *, const char *repo_url, const char *rev); + #endif |