feat: add initial helper methods

This commit is contained in:
Louis Seubert 2024-07-21 12:15:55 +02:00
parent 81d80fcced
commit db684e73f8
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
7 changed files with 1174 additions and 0 deletions

9
cmd/main.go Normal file
View file

@ -0,0 +1,9 @@
package main
import "git.geekeey.de/actions/sdk"
func main() {
a := sdk.New()
a.AddMask("hello")
a.WithFieldsSlice("foo=bar", "biz=baz").Debugf("hello world")
}