sdk/cmd/main.go

12 lines
171 B
Go
Raw Normal View History

2024-07-21 10:15:55 +00:00
package main
2024-07-22 19:13:54 +00:00
import (
"git.geekeey.de/actions/sdk"
)
2024-07-21 10:15:55 +00:00
func main() {
a := sdk.New()
a.AddMask("hello")
a.WithFieldsSlice("foo=bar", "biz=baz").Debugf("hello world")
}