Run from docker
This commit is contained in:
12
src/Alma.App/Command/Diag/DiagnosticHelper.cs
Normal file
12
src/Alma.App/Command/Diag/DiagnosticHelper.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Alma.Command.Diag;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class DiagnosticHelper : Attribute
|
||||
{
|
||||
public string Command { get; }
|
||||
|
||||
public DiagnosticHelper(string command)
|
||||
{
|
||||
Command = command;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user