Archived
1
0

」 feat: finished borg backup

This commit is contained in:
2025-03-03 21:16:45 +01:00
parent 25ec0ebb31
commit 57387462cf
6 changed files with 49 additions and 31 deletions

View File

@ -0,0 +1,16 @@
package main
import (
"fmt"
"git.keyzox.me/42_adjoly/inception/internal/env"
_log "git.keyzox.me/42_adjoly/inception/internal/log"
)
func main(){
pass := env.FileEnv("BORG_PASSPHRASE", "")
if pass == "" {
_log.Log("error", "Could not found passphrase")
}
fmt.Print(pass)
}