wasi-module-sdk-go/examples/hello_world_go/module/hello_world.go

42 lines
735 B
Go
Raw Normal View History

2023-05-08 13:21:31 +00:00
package module
import (
2023-05-24 20:11:05 +00:00
"fmt"
"os"
2023-05-08 13:21:31 +00:00
"golang.org/x/exp/slog"
2023-05-24 20:11:05 +00:00
sdk "code.icb4dc0.de/buildr/wasi-module-sdk-go"
2023-05-08 13:21:31 +00:00
)
var _ sdk.Module = (*HelloWorld)(nil)
type HelloWorld struct {
Name string
}
func (h HelloWorld) Execute(ctx sdk.ExecutionContext) error {
logger := ctx.Logger()
2023-05-24 20:11:05 +00:00
logger.Info("Executing hello world", slog.String("name", h.Name))
2023-05-08 13:21:31 +00:00
2023-05-24 20:11:05 +00:00
if f, err := os.CreateTemp(ctx.OutDir(), "hello_world.*.txt"); err != nil {
2023-05-08 13:21:31 +00:00
return err
2023-05-24 20:11:05 +00:00
} else if err = f.Close(); err != nil {
2023-05-08 13:21:31 +00:00
return err
}
2023-05-24 20:11:05 +00:00
fmt.Println("Hello world")
_, _ = fmt.Fprint(ctx.StdOut(), "Hello world via pipeline")
2023-05-08 13:21:31 +00:00
return nil
}
func (HelloWorld) Category() sdk.Category {
return sdk.CategoryTask
}
func (HelloWorld) Type() string {
return "hello_world"
}