aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage_sqlite.h
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-11-15 13:50:15 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-11-15 14:03:11 +0100
commit992ac5301fc8727d83017b242af2df9895eebfcc (patch)
tree4fdd21a61b54d368540d6ef65258f97473051381 /src/storage_sqlite.h
parentclient: print the server response (diff)
downloadcimple-992ac5301fc8727d83017b242af2df9895eebfcc.tar.gz
cimple-992ac5301fc8727d83017b242af2df9895eebfcc.zip
implement a command to list runs
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 857b9c0..1a9deea 100644
--- a/src/storage_sqlite.h
+++ b/src/storage_sqlite.h
@@ -25,6 +25,8 @@ void storage_sqlite_destroy(struct storage *);
int storage_sqlite_run_create(struct storage *, const char *repo_url, const char *rev);
int storage_sqlite_run_finished(struct storage *, int id, const struct proc_output *);
+
+int storage_sqlite_get_runs(struct storage *, struct run_queue *runs);
int storage_sqlite_get_run_queue(struct storage *, struct run_queue *runs);
#endif