aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/ui.go')
-rw-r--r--ui/ui.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/ui.go b/ui/ui.go
index 633fc19b..2cd558b7 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -298,3 +298,14 @@ func onQuit() {
os.Exit(1)
}
}
+
+const aboutText = `
+WireGuard
+TODO.
+
+Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
+`
+
+func onAbout() {
+ walk.MsgBox(nil, "About WireGuard", aboutText, walk.MsgBoxOK)
+}