norgbackup/norg/restic/init.nim

7 lines
201 B
Nim
Raw Permalink 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 =
return runDiscard genCommand(cmd = "init", repo = repo.path, further_args = nc.args.further_args)
2024-08-23 11:12:00 +02:00