norgbackup/norg/restic/init.nim

7 lines
189 B
Nim
Raw Normal View History

2024-08-23 11:12:00 +02:00
import ../model/config_type
2024-08-23 11:30:36 +02:00
import execute
2024-08-23 11:12:00 +02:00
proc initRepo*(nc: NorgConfig, repo: Repository): int =
2024-08-23 11:30:36 +02:00
return runDiscard genCommand(cmd = "init", repo = repo.path, others = nc.args.others)
2024-08-23 11:12:00 +02:00