sdk/cmd/main.go

11 lines
171 B
Go
Raw Normal View History

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