diff options
author | Matthew Kosarek <matt.kosarek@canonical.com> | 2024-05-01 14:12:17 -0400 |
---|---|---|
committer | Matthew Kosarek <matt.kosarek@canonical.com> | 2024-05-01 14:12:17 -0400 |
commit | ece0f56d29509685f9b61642056f15f84a8a0726 (patch) | |
tree | 3882ad898a80ec498f406ce99cacf12cc94658b6 /generator | |
parent | 9262b5c798e1921c759addb492b592f3ccf64980 (diff) |
cleanup: quick update, removing outdated items
Diffstat (limited to 'generator')
-rw-r--r-- | generator/main.go | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/generator/main.go b/generator/main.go deleted file mode 100644 index d6f5c73..0000000 --- a/generator/main.go +++ /dev/null @@ -1,24 +0,0 @@ -package main - -import "fmt" - -/* - - Form of the static site generator: - 1. Define a list of static items - 2. Define a global index.css - 3. Each static site item has a content.html file - 4. Each static site item has a content.css file - 5. Each static site item can have a content.js file - 6. Each static site item can have an optional build - 7. There will be some built-in blogging functionality if we do it right -*/ - -func main() { - doWork() -} - -func doWork() { - fmt.Println("Hello, world!") - -} |