Add API for FileServiceRequests (#8)

* add paths to api

* add queue request dto

* update api for pathing

* update pathing again

* update api

Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
Co-authored-by: Stanley Dimant <stanley.dimant@varian.com>
This commit is contained in:
rootdarkarchon
2023-01-11 12:23:03 +01:00
committed by GitHub
parent d361cfa3b9
commit bd4c360a4f
5 changed files with 53 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace MareSynchronos.API
{
public class MareAuth
{
public const string Auth = "/auth";
public const string Auth_CreateIdent = "createWithIdent";
public static Uri AuthFullPath(Uri baseUri) => new Uri(baseUri, Auth + "/" + Auth_CreateIdent);
}
}