23 lines
579 B
C#
23 lines
579 B
C#
using CodeLiturgy.Augeas.Test;
|
|
using static CodeLiturgy.Augeas.AugeasExtern;
|
|
|
|
namespace CodeLiturgy.Augeas
|
|
{
|
|
public class AugeasLib
|
|
{
|
|
public static void PrintPreview(AugSettings settings,
|
|
string matchPath,
|
|
string filePath)
|
|
{
|
|
printPreview(settings, matchPath, filePath);
|
|
}
|
|
|
|
/// <summary>Test calling</summary>
|
|
public static void PrintAugTree(AugSettings settings, string matchPath,
|
|
string filePath)
|
|
{
|
|
printAugTree(settings, matchPath, filePath);
|
|
}
|
|
}
|
|
}
|