Compare commits

..

2 Commits

Author SHA1 Message Date
ngn
7755d6c2fe
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>
2025-04-05 23:51:03 +03:00
ngn
06fa48351b
add renovate config
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 23:50:38 +03:00
8 changed files with 211 additions and 207 deletions

View File

@ -15,7 +15,7 @@ var Dicts []dictionary = []dictionary{
{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 {
if Dicts[i].ShortName == sn {
return &Dicts[i]

4
renovate.json Normal file
View File

@ -0,0 +1,4 @@
{
"extends": ["config:recommended"],
"prHourlyLimit": 20
}