mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 23:40:35 +01:00
16 lines
311 B
Go
16 lines
311 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/kataras/iris/internal/cmd/gen/website/examples"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
// just for testing, the cli will be coded when I finish at least with this one command.
|
||
|
_, err := examples.WriteExamplesTo(os.Stdout) // doesn't work yet.
|
||
|
if err != nil {
|
||
|
println(err.Error())
|
||
|
}
|
||
|
}
|