10 lines
No EOL
249 B
C#
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; }
|
|
} |