mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-04 06:23:09 +00:00
19 lines
432 B
C#
19 lines
432 B
C#
|
|
using Core;
|
|||
|
|
using KubernetesWorkflow;
|
|||
|
|
|
|||
|
|
namespace CodexDiscordBotPlugin
|
|||
|
|
{
|
|||
|
|
public static class CoreInterfaceExtensions
|
|||
|
|
{
|
|||
|
|
public static RunningContainer DeployMetricsCollector(this CoreInterface ci)
|
|||
|
|
{
|
|||
|
|
return Plugin(ci).Deploy();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private static CodexDiscordBotPlugin Plugin(CoreInterface ci)
|
|||
|
|
{
|
|||
|
|
return ci.GetPlugin<CodexDiscordBotPlugin>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|