diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-08-20 19:27:34 -0400 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-08-20 19:27:34 -0400 |
commit | 135a9e75e180f3276cceb4e37415f84906e66016 (patch) | |
tree | d697f33f5877451d25fa380a84b917536632e844 /PersonalApi/Controllers/ActivityController.cs | |
parent | 7bed94e1589c182dce32c3e277ac07ccf44bfd8f (diff) |
Diffstat (limited to 'PersonalApi/Controllers/ActivityController.cs')
-rw-r--r-- | PersonalApi/Controllers/ActivityController.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/PersonalApi/Controllers/ActivityController.cs b/PersonalApi/Controllers/ActivityController.cs new file mode 100644 index 0000000..73371da --- /dev/null +++ b/PersonalApi/Controllers/ActivityController.cs | |||
@@ -0,0 +1,11 @@ | |||
1 | using Microsoft.AspNetCore.Http; | ||
2 | using Microsoft.AspNetCore.Mvc; | ||
3 | |||
4 | namespace PersonalApi.Controllers | ||
5 | { | ||
6 | [Route("[controller]")] | ||
7 | [ApiController] | ||
8 | public class ActivityController : ControllerBase | ||
9 | { | ||
10 | } | ||
11 | } | ||