runtimevar

module
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 8, 2020 License: BSD-3-Clause

README

runtimevar

Simple wrapper around the Go Cloud runtimevar package

Example

package main

import (
	"context"
	"flag"
	"fmt"
	"github.com/sfomuseum/runtimevar/string"
	_ "gocloud.dev/runtimevar/awsparamstore"
	_ "gocloud.dev/runtimevar/constantvar"
	_ "gocloud.dev/runtimevar/filevar"
)

func main() {

	flag.Parse()

	ctx := context.Background()

	for _, uri := range flag.Args() {
		str_var, _ := string.RuntimeVar(ctx, uri)
		fmt.Printf(str_var)
	}
}

Tools

runtimevar
go run cmd/runtimevar/main.go 'constant://?val=hello+world'
hello world

The following Go Cloud runtimevar services are supported by the runtimevar tool:

See also

Directories

Path Synopsis
cmd
runtimevar command

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL