13 lines
243 B
C#
13 lines
243 B
C#
using System.Diagnostics;
|
|
|
|
namespace GitAnchor.Actions
|
|
{
|
|
internal class Pull : BaseAction
|
|
{
|
|
public static async new Task<ActivityStatusCode> Run()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|