Move dict to the project's root directory

This commit is contained in:
Reza Behzadan 2024-02-18 16:15:34 +03:30
parent f73fba6a9c
commit 4454bd800e
18 changed files with 2 additions and 2 deletions

View File

@ -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()
} }