fix code formatting
All checks were successful
Build and publish the docker image / build (push) Successful in 1m2s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-04-05 23:51:03 +03:00
parent 06fa48351b
commit 7755d6c2fe
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D
7 changed files with 207 additions and 207 deletions

View File

@ -15,7 +15,7 @@ var Dicts []dictionary = []dictionary{
{ShortName: "EN-FR", Name: "French - English", Url: "/french-english"}, {ShortName: "EN-FR", Name: "French - English", Url: "/french-english"},
} }
func find_dict(sn string) (*dictionary) { func find_dict(sn string) *dictionary {
for i := range Dicts { for i := range Dicts {
if Dicts[i].ShortName == sn { if Dicts[i].ShortName == sn {
return &Dicts[i] return &Dicts[i]