All checks were successful
continuous-integration/drone/push Build is passing
17 lines
300 B
C#
17 lines
300 B
C#
namespace Vegasco.Server.AppHost.Shared;
|
|
|
|
public static class Constants
|
|
{
|
|
public static class Projects
|
|
{
|
|
public const string Api = "Vegasco-Server-Api";
|
|
}
|
|
|
|
public static class Database
|
|
{
|
|
public const string ServiceName = "postgres";
|
|
|
|
public const string Name = "vegasco-database";
|
|
}
|
|
}
|