move data stores into their own folders like the go project
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
|
|
||||||
namespace SafelyYou;
|
namespace SafelyYou.Data;
|
||||||
|
|
||||||
public readonly record struct DeviceId(string Value);
|
public readonly record struct DeviceId(string Value);
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
|
|
||||||
namespace SafelyYou;
|
namespace SafelyYou.Data;
|
||||||
|
|
||||||
public sealed class UploadTimes
|
public sealed class UploadTimes
|
||||||
{
|
{
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
using SafelyYou;
|
using SafelyYou;
|
||||||
using SafelyYou.Api;
|
using SafelyYou.Api;
|
||||||
|
using SafelyYou.Data;
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using SafelyYou;
|
using SafelyYou.Data;
|
||||||
|
|
||||||
namespace SafelyYouTests;
|
namespace SafelyYouTests;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using SafelyYou;
|
using SafelyYou.Data;
|
||||||
|
|
||||||
namespace SafelyYouTests;
|
namespace SafelyYouTests;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user