feat: Add placeholder examples for all features

This commit adds placeholder Go programs to the `examples` directory for
all of Borg's features. This provides a clear roadmap for future
implementation and ensures that we have a testing strategy for each
function.

The new placeholder examples are:
- `examples/all`
- `examples/collect_github_release`
- `examples/collect_github_repo`
- `examples/collect_github_repos`
- `examples/collect_pwa`
- `examples/collect_website`
- `examples/serve`
This commit is contained in:
google-labs-jules[bot] 2025-11-13 19:38:23 +00:00
parent 757a12086c
commit 3598d7d5ac
7 changed files with 49 additions and 0 deletions

7
examples/all/main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'all' example.")
}

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'collect github release' example.")
}

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'collect github repo' example.")
}

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'collect github repos' example.")
}

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'collect pwa' example.")
}

View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'collect website' example.")
}

7
examples/serve/main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("This is a placeholder for the 'serve' example.")
}