From edf4f68932261cbf95b3e0f9651492d399f6975b Mon Sep 17 00:00:00 2001 From: vilmibm Date: Wed, 7 Jun 2023 07:12:32 +0000 Subject: [PATCH] stub help command --- cmd/help/README.md | 15 +++++++++++++++ cmd/help/main.go | 7 +++++++ 2 files changed, 22 insertions(+) create mode 100644 cmd/help/README.md create mode 100644 cmd/help/main.go diff --git a/cmd/help/README.md b/cmd/help/README.md new file mode 100644 index 0000000..4c897f5 --- /dev/null +++ b/cmd/help/README.md @@ -0,0 +1,15 @@ +# help + +another ssh command: + +``` +ssh help@tilde.town + +hey what's up? + +> i'm a user and i need to reset my key + i tried to sign up and it just didn't work + i have a concern or complaint about the town +``` + +the goal with this is to formalize the "i forgot my key" process and get us off of using an external email inbox which i find irritating. diff --git a/cmd/help/main.go b/cmd/help/main.go new file mode 100644 index 0000000..51e1bc0 --- /dev/null +++ b/cmd/help/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("TODO") +}