We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
/up
1 parent 054de87 commit b7b050aCopy full SHA for b7b050a
2 files changed
BlazorDiffusion.ServiceInterface/MyServices.cs
@@ -95,4 +95,9 @@ public async Task<object> Any(UpdateUserProfile request)
95
Avatar = request.Avatar ?? userInfo.Avatar,
96
};
97
}
98
+
99
+ public object Get(KamalUp request)
100
+ {
101
+ return new KamalUpResponse();
102
+ }
103
BlazorDiffusion.ServiceModel/Kamal.cs
@@ -0,0 +1,12 @@
1
+using ServiceStack;
2
3
+namespace BlazorDiffusion.ServiceModel;
4
5
+[Route("/up")]
6
+public class KamalUp : IGet, IReturn<KamalUpResponse>
7
+{
8
+}
9
10
+public class KamalUpResponse
11
12
0 commit comments