Skip to content

Commit d656a8d

Browse files
committed
Move builtin to internal/builtin
1 parent bd98d85 commit d656a8d

21 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1848,7 +1848,7 @@ See [Language Definition](https://expr-lang.org/docs/language-definition).
18481848
- `select` ... Select from candidates. `func(message string, candidates []string, default string) string`
18491849
- `basename` ... [filepath.Base](https://pkg.go.dev/path/filepath#Base)
18501850
- `time` ... Converts the given string or number to `time.Time{}`.
1851-
- `faker.*` ... Generate fake data using [Faker](https://pkg.go.dev/github.com/k1LoW/runn/builtin#Faker) ).
1851+
- `faker.*` ... Generate fake data using [Faker](https://pkg.go.dev/github.com/k1LoW/runn/internal/builtin#Faker) ).
18521852

18531853
## Option
18541854

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

internal/expr/expr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/expr-lang/expr/parser/lexer"
1515
"github.com/goccy/go-yaml"
1616
"github.com/k1LoW/expand"
17-
"github.com/k1LoW/runn/builtin"
17+
"github.com/k1LoW/runn/internal/builtin"
1818
"github.com/k1LoW/runn/internal/deprecation"
1919
"github.com/k1LoW/runn/internal/exprtrace"
2020
"github.com/xlab/treeprint"

internal/expr/expr_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/google/go-cmp/cmp"
8-
"github.com/k1LoW/runn/builtin"
8+
"github.com/k1LoW/runn/internal/builtin"
99
"github.com/k1LoW/runn/internal/exprtrace"
1010
)
1111

option.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/elk-language/go-prompt"
1919
pstrings "github.com/elk-language/go-prompt/strings"
2020
"github.com/k1LoW/duration"
21-
"github.com/k1LoW/runn/builtin"
21+
"github.com/k1LoW/runn/internal/builtin"
2222
"github.com/k1LoW/runn/internal/expr"
2323
"github.com/k1LoW/runn/internal/store"
2424
"github.com/k1LoW/sshc/v4"

0 commit comments

Comments
 (0)