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:
parent
757a12086c
commit
3598d7d5ac
7 changed files with 49 additions and 0 deletions
7
examples/all/main.go
Normal file
7
examples/all/main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("This is a placeholder for the 'all' example.")
|
||||
}
|
||||
7
examples/collect_github_release/main.go
Normal file
7
examples/collect_github_release/main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("This is a placeholder for the 'collect github release' example.")
|
||||
}
|
||||
7
examples/collect_github_repo/main.go
Normal file
7
examples/collect_github_repo/main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("This is a placeholder for the 'collect github repo' example.")
|
||||
}
|
||||
7
examples/collect_github_repos/main.go
Normal file
7
examples/collect_github_repos/main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("This is a placeholder for the 'collect github repos' example.")
|
||||
}
|
||||
7
examples/collect_pwa/main.go
Normal file
7
examples/collect_pwa/main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("This is a placeholder for the 'collect pwa' example.")
|
||||
}
|
||||
7
examples/collect_website/main.go
Normal file
7
examples/collect_website/main.go
Normal 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
7
examples/serve/main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("This is a placeholder for the 'serve' example.")
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue