aboutsummaryrefslogtreecommitdiff
path: root/verify/core
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-02-29 10:13:51 +0100
committeraxtloss <axtlos@getcryst.al>2024-02-29 10:13:51 +0100
commitaa93cbb2393b538a22dea0b29b56fa8f2cb3c18c (patch)
tree139bd630ab9f291a1992c6ac261b6630ba4c7e33 /verify/core
parentae1c1346c1cd9abece03f02faab6546e1a08155d (diff)
downloadfsverify-aa93cbb2393b538a22dea0b29b56fa8f2cb3c18c.tar.gz
fsverify-aa93cbb2393b538a22dea0b29b56fa8f2cb3c18c.tar.bz2
Rename fsverify go module
Diffstat (limited to '')
-rw-r--r--verify/core/verification.go2
-rw-r--r--verify/core/warn.go12
2 files changed, 13 insertions, 1 deletions
diff --git a/verify/core/verification.go b/verify/core/verification.go
index 289ce1e..28b4e3b 100644
--- a/verify/core/verification.go
+++ b/verify/core/verification.go
@@ -8,7 +8,7 @@ import (
"strings"
"aead.dev/minisign"
- "github.com/axtloss/fsverify/config"
+ "github.com/axtloss/fsverify/verify/config"
"github.com/tarm/serial"
)
diff --git a/verify/core/warn.go b/verify/core/warn.go
new file mode 100644
index 0000000..b00838f
--- /dev/null
+++ b/verify/core/warn.go
@@ -0,0 +1,12 @@
+package core
+
+import (
+ "fmt"
+
+ "github.com/axtloss/fsverify/verify/config"
+)
+
+func WarnUser() {
+ fmt.Println(config.ProcCount)
+
+}