doc: added docstrings to all db/git functions

This commit is contained in:
Jef Roosens 2022-05-03 19:55:52 +02:00
parent 204144cee8
commit 5781796e99
Signed by untrusted user: Jef Roosens
GPG key ID: B75D4F293C7052DB
5 changed files with 15 additions and 2 deletions

View file

@ -6,6 +6,7 @@ struct VieterDb {
conn sqlite.DB
}
// init initializes a database & adds the correct tables.
pub fn init(db_path string) ?VieterDb {
conn := sqlite.connect(db_path) ?