@@ -17,7 +17,7 @@ pub async fn statics(req: Request) -> RoutingResult {
17
17
18
18
"/assets/favicon-f84116cb.ico" => Ok ( HttpResponse :: fav ( FAVICON ) ) ,
19
19
20
- "/assets/index-26056008 .js" => Ok ( HttpResponse :: js ( JS_INDEX ) ) ,
20
+ "/assets/index-f2114f92 .js" => Ok ( HttpResponse :: js ( JS_INDEX ) ) ,
21
21
22
22
"/assets/en-6862b1fd.js" => Ok ( HttpResponse :: js ( JS_TRANSLATIONS_ENGLISH ) ) ,
23
23
"/assets/de-a07fd626.js" => Ok ( HttpResponse :: js ( JS_TRANSLATIONS_GERMAN ) ) ,
@@ -27,7 +27,7 @@ pub async fn statics(req: Request) -> RoutingResult {
27
27
"/assets/nl-ac928f6f.js" => Ok ( HttpResponse :: js ( JS_TRANSLATIONS_DUTCH ) ) ,
28
28
"/assets/pt-108a6a72.js" => Ok ( HttpResponse :: js ( JS_TRANSLATIONS_PORTUGUESE ) ) ,
29
29
30
- "/assets/index-52409a7e .css" => Ok ( HttpResponse :: css ( CSS ) ) ,
30
+ "/assets/index-3c0611ee .css" => Ok ( HttpResponse :: css ( CSS ) ) ,
31
31
32
32
"/assets/check-3e734f78.svg" => Ok ( HttpResponse :: svg ( SVG_CHECK ) ) ,
33
33
"/assets/check-green-4525c79c.svg" => Ok ( HttpResponse :: svg ( SVG_CHECK_GREEN ) ) ,
@@ -68,7 +68,7 @@ pub static INDEX: &[u8] = include_bytes!("../../../ui/index.html");
68
68
69
69
static FAVICON : & [ u8 ] = include_bytes ! ( "../../../ui/assets/favicon-f84116cb.ico" ) ;
70
70
71
- static JS_INDEX : & [ u8 ] = include_bytes ! ( "../../../ui/assets/index-26056008 .js" ) ;
71
+ static JS_INDEX : & [ u8 ] = include_bytes ! ( "../../../ui/assets/index-f2114f92 .js" ) ;
72
72
73
73
static JS_TRANSLATIONS_GERMAN : & [ u8 ] = include_bytes ! ( "../../../ui/assets/de-a07fd626.js" ) ;
74
74
static JS_TRANSLATIONS_ENGLISH : & [ u8 ] = include_bytes ! ( "../../../ui/assets/en-6862b1fd.js" ) ;
@@ -78,7 +78,7 @@ static JS_TRANSLATIONS_GREEK: &[u8] = include_bytes!("../../../ui/assets/gr-094d
78
78
static JS_TRANSLATIONS_DUTCH : & [ u8 ] = include_bytes ! ( "../../../ui/assets/nl-ac928f6f.js" ) ;
79
79
static JS_TRANSLATIONS_PORTUGUESE : & [ u8 ] = include_bytes ! ( "../../../ui/assets/pt-108a6a72.js" ) ;
80
80
81
- static CSS : & [ u8 ] = include_bytes ! ( "../../../ui/assets/index-52409a7e .css" ) ;
81
+ static CSS : & [ u8 ] = include_bytes ! ( "../../../ui/assets/index-3c0611ee .css" ) ;
82
82
83
83
static SVG_CHECK : & [ u8 ] = include_bytes ! ( "../../../ui/assets/check-3e734f78.svg" ) ;
84
84
static SVG_CHECK_GREEN : & [ u8 ] = include_bytes ! ( "../../../ui/assets/check-green-4525c79c.svg" ) ;
0 commit comments