| 1234567891011121314151617181920212223242526272829 |
- package symbols
- import (
- "os/exec"
- "reflect"
- "dario.cat/mergo"
- "github.com/google/uuid"
- )
- var (
- Symbols = map[string]map[string]reflect.Value{
- "os/exec/exec": {
- "Command": reflect.ValueOf(exec.Command),
- "CommandContext": reflect.ValueOf(exec.CommandContext),
- "LookPath": reflect.ValueOf(exec.LookPath),
- },
- "git.bazzel.dev/bmallen/helios/tools/tools": {},
- "github.com/google/uuid/uuid": {
- "New": reflect.ValueOf(uuid.New),
- "NewString": reflect.ValueOf(uuid.NewString),
- },
- "dario.cat/mergo/mergo": {
- "Merge": reflect.ValueOf(mergo.Merge),
- "WithOverride": reflect.ValueOf(mergo.WithOverride),
- "WithoutDereference": reflect.ValueOf(mergo.WithoutDereference),
- },
- }
- )
|