refactor: removed commented code & ran formatter

This commit is contained in:
Jef Roosens 2022-05-03 16:55:50 +02:00
parent c818273790
commit 204144cee8
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
7 changed files with 17 additions and 193 deletions

View file

@ -3,7 +3,6 @@ module git
import cli
import env
import cron.expression { parse_expression }
import db { GitRepo, GitRepoArch }
struct Config {
address string [required]
@ -123,7 +122,7 @@ fn list(conf Config) ? {
repos := get_repos(conf.address, conf.api_key) ?
for repo in repos {
println('${repo.id}\t$repo.url\t$repo.branch\t$repo.repo')
println('$repo.id\t$repo.url\t$repo.branch\t$repo.repo')
}
}