mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
* fix: update commitizen version * feat: add WASM build tags to db actions * feat: Update all actions to follow `AddAsset` for error handling * feat: remove database dependency in dwn and motr commands * feat: add basic info form to registration view * feat: implement basic browser navigation component * refactor: move database related files to middleware * fix: remove unused test command * fix: update source directory for buf-publish workflow * feat: embed dwn config data * feat: add Sync RPC to query service * refactor: rename package to for better organization * feat: add new javascript exception handling for server requests * refactor: move dwn.wasm to embed directory * refactor: move server files to a new directory * refactor: move session related code to client package * refactor: Update dwn.wasm build path * refactor: move dwn wasm build to vfs * feat: introduce config loading middleware * feat: introduce DWN config and address JSON * refactor: move dwn wasm build output to embed directory * feat: introduce config and IndexedDB model * refactor: move DWN config file generation to vfs * refactor: move config package to * feat: add Sonr.ID IPFS gateway proxy * feat: add SWT data structure * feat: update index.html to use Sonr styles and scripts * feat(dwn): remove index.html server endpoint * feat: add Navigator API for web credential management
38 lines
917 B
Go
38 lines
917 B
Go
// Code generated from Pkl module `dwn`. DO NOT EDIT.
|
|
package dwn
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/apple/pkl-go/pkl"
|
|
)
|
|
|
|
type Dwn struct {
|
|
Config any `pkl:"config"`
|
|
}
|
|
|
|
// 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
|
|
}
|