Move dict to the project's root directory
This commit is contained in:
parent
f73fba6a9c
commit
4454bd800e
4
main.go
4
main.go
@ -1,7 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.behzadan.ir/reza/GoDict/internal/dict"
|
"git.behzadan.ir/reza/GoDict/dict"
|
||||||
)
|
)
|
||||||
|
|
||||||
func load(fn string) dict.Dict {
|
func load(fn string) dict.Dict {
|
||||||
@ -13,7 +13,7 @@ func load(fn string) dict.Dict {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
d := load("internal/dict/test_data/dict4.yaml")
|
d := load("dict/test_data/dict4.yaml")
|
||||||
v := d.GetValue("nginx.sites.www")
|
v := d.GetValue("nginx.sites.www")
|
||||||
v.Print()
|
v.Print()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user