mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
- **docs: remove discord badge from README** - **fix: ensure go version is up-to-date** - **<no value>** - **refactor: update import paths for blocks to components** - **feat: add Hero component template** - **fix: update footer logo to svg** - **feat: add Query/Sign and Query/Verify RPC methods** - **refactor: rename Keyshares to KsVal in did/v1/state.proto**
37 lines
890 B
Go
37 lines
890 B
Go
// Code generated from Pkl module `dwn`. DO NOT EDIT.
|
|
package dwn
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/apple/pkl-go/pkl"
|
|
)
|
|
|
|
type Dwn struct {
|
|
}
|
|
|
|
// LoadFromPath loads the pkl module at the given path and evaluates it into a Dwn
|
|
func LoadFromPath(ctx context.Context, path string) (ret *Dwn, err error) {
|
|
evaluator, err := pkl.NewEvaluator(ctx, pkl.PreconfiguredOptions)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer func() {
|
|
cerr := evaluator.Close()
|
|
if err == nil {
|
|
err = cerr
|
|
}
|
|
}()
|
|
ret, err = Load(ctx, evaluator, pkl.FileSource(path))
|
|
return ret, err
|
|
}
|
|
|
|
// Load loads the pkl module at the given source and evaluates it with the given evaluator into a Dwn
|
|
func Load(ctx context.Context, evaluator pkl.Evaluator, source *pkl.ModuleSource) (*Dwn, error) {
|
|
var ret Dwn
|
|
if err := evaluator.EvaluateModule(ctx, source, &ret); err != nil {
|
|
return nil, err
|
|
}
|
|
return &ret, nil
|
|
}
|