aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorKushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com>2021-10-27 18:18:06 -0300
committerFChannel <>2022-06-19 12:53:29 -0700
commitd2277b1f9b17e61456cd312ef54542e1cfa81a40 (patch)
tree3f7f4b6dffe95c0f9909921dd47700e733b4ee47 /util
parent9f8195162295d2a789462e6b13394174a5745100 (diff)
restructuring, part 1 of many
Diffstat (limited to 'util')
-rw-r--r--util/util.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/util/util.go b/util/util.go
new file mode 100644
index 0000000..7164937
--- /dev/null
+++ b/util/util.go
@@ -0,0 +1,14 @@
+package util
+
+import (
+ "regexp"
+)
+
+func IsOnion(url string) bool {
+ re := regexp.MustCompile(`\.onion`)
+ if re.MatchString(url) {
+ return true
+ }
+
+ return false
+}