mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
8 lines
179 B
C#
8 lines
179 B
C#
namespace CodeStatisticsCore.Handling{
|
|
public interface IFolderHandler{
|
|
int Weight { get; }
|
|
|
|
void Process(string folder, Variables.Root variables);
|
|
}
|
|
}
|