Files
Akari.Prototype/Akari.Prototype.Server/Utils/AkariPath.cs
2021-06-03 20:19:42 +02:00

16 lines
338 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace Akari.Prototype.Server.Utils
{
public static class AkariPath
{
public const string BasePath = "Data";
public static string GetPath(string path) => Path.Combine(BasePath, path);
}
}