15 lines
299 B
C#
15 lines
299 B
C#
using System.Diagnostics;
|
|
namespace GitAnchor.Actions;
|
|
|
|
public abstract class BaseAction {
|
|
public virtual void Run()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public virtual async Task<ActivityStatusCode> RunAsync()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|