move Routes into HTTP namespace
This commit is contained in:
parent
f3f8828ec0
commit
b627ab383f
2 changed files with 2 additions and 4 deletions
|
@ -1,14 +1,11 @@
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Runtime.InteropServices.JavaScript;
|
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.Json.Serialization;
|
|
||||||
using Computernewb.CollabVMAuthServer.HTTP.Payloads;
|
using Computernewb.CollabVMAuthServer.HTTP.Payloads;
|
||||||
using Computernewb.CollabVMAuthServer.HTTP.Responses;
|
using Computernewb.CollabVMAuthServer.HTTP.Responses;
|
||||||
using Isopoh.Cryptography.Argon2;
|
using Isopoh.Cryptography.Argon2;
|
||||||
using Microsoft.AspNetCore.Http.HttpResults;
|
|
||||||
|
|
||||||
namespace Computernewb.CollabVMAuthServer;
|
namespace Computernewb.CollabVMAuthServer.HTTP;
|
||||||
|
|
||||||
public static class Routes
|
public static class Routes
|
||||||
{
|
{
|
|
@ -1,4 +1,5 @@
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
using Computernewb.CollabVMAuthServer.HTTP;
|
||||||
using Tomlet;
|
using Tomlet;
|
||||||
|
|
||||||
namespace Computernewb.CollabVMAuthServer;
|
namespace Computernewb.CollabVMAuthServer;
|
||||||
|
|
Loading…
Reference in a new issue