Iceshrimp.NET/Iceshrimp.Backend/Core/Configuration/Config.cs
2023-12-24 00:57:07 +01:00

10 lines
No EOL
249 B
C#

namespace Iceshrimp.Backend.Core.Configuration;
// TODO: something something IConfiguration
public class Config {
public static Config Instance = new() {
Url = "https://shrimp-next.fedi.solutions"
};
public required string Url { get; set; }
}