16 lines
338 B
C#
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);
|
|
}
|
|
}
|