Kevin Franklin Kim ba656fd5a7 Merge pull request #12 from foomo/feature/go-1.24.3
feat: go 1.24.3
2025-06-03 10:53:39 +02:00
2025-06-03 10:01:36 +02:00
2024-05-20 16:51:24 +02:00
2025-03-11 14:43:21 +01:00
2024-05-21 08:30:40 +02:00
2024-05-20 16:51:24 +02:00
2025-03-11 16:13:41 +01:00
2025-06-03 10:00:24 +02:00
2025-03-11 12:13:18 +01:00
2025-06-03 10:00:24 +02:00
2025-06-03 10:00:33 +02:00
2025-06-03 10:00:33 +02:00
2024-05-20 16:51:24 +02:00
2025-06-03 10:00:24 +02:00
2025-03-11 16:13:41 +01:00

Build Status Go Report Card GoDoc

sesamy

Go Contemplate

A code generation helper.

Wrapper library around golang.org/x/tools/go/packages to filter only defined types and their dependencies.

Example

package main

import (
  "github.com/foomo/gocontemplate/pkg/contemplate"
)

func main() {
  ctpl, err := contemplate.Load(&contemplate.Config{
    Packages: []*contemplate.PackageConfig{
      {
        Path:  "github.com/foomo/sesamy-go/event",
        Types: []string{"PageView"},
      },
    },
  })
  if err != nil {
    panic(err)
  }
}

How to Contribute

Please refer to the CONTRIBUTING details and follow the CODE_OF_CONDUCT and SECURITY guidelines.

License

Distributed under MIT License, please see license file within the code for more details.

Made with ♥ foomo by bestbytes

Description
No description provided
Readme MIT 304 KiB
Languages
Go 82.4%
Makefile 13.6%
Shell 4%