aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--main.go7
2 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9bfa5f3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# Debby
+
+Debby is a CLI tool that wraps Dolt and Visidata to enable you to do quick database and table interactions on the command line.
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..e9c733f
--- /dev/null
+++ b/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+ fmt.Println("Hello, I'm Debby. Come back later!")
+}