File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ pub struct GetGameArgs {
17
17
}
18
18
19
19
impl GetGameArgs {
20
- /// Returns the fully qualified function path for use with Convex client
21
20
pub const FUNCTION_PATH : & ' static str = "games:getGame" ;
22
21
}
23
22
@@ -32,7 +31,6 @@ pub struct WinGameArgs {
32
31
}
33
32
34
33
impl WinGameArgs {
35
- /// Returns the fully qualified function path for use with Convex client
36
34
pub const FUNCTION_PATH : & ' static str = "games:winGame" ;
37
35
}
38
36
@@ -47,7 +45,6 @@ pub struct LossGameArgs {
47
45
}
48
46
49
47
impl LossGameArgs {
50
- /// Returns the fully qualified function path for use with Convex client
51
48
pub const FUNCTION_PATH : & ' static str = "games:lossGame" ;
52
49
}
53
50
Original file line number Diff line number Diff line change @@ -238,7 +238,6 @@ fn generate_function_code(function: ConvexFunction) -> String
238
238
239
239
// Add implementation block with static FUNCTION_PATH method
240
240
code. push_str ( & format ! ( "impl {} {{\n " , struct_name) ) ;
241
- code. push_str ( " /// Returns the fully qualified function path for use with Convex client\n " ) ;
242
241
code. push_str ( " pub const FUNCTION_PATH: &'static str = " ) ;
243
242
code. push_str ( & format ! ( "\" {}:{}\" ;\n " , function. file_name, function. name) ) ;
244
243
code. push_str ( "}\n \n " ) ;
You can’t perform that action at this time.
0 commit comments