dtagfs/source/tagprovider.d

10 lines
118 B
D
Raw Permalink Normal View History

2016-10-16 01:03:31 +02:00
module dtagfs.tagprovider;
interface TagProvider
2016-10-16 01:03:31 +02:00
{
string[] getTags(string path);
2016-10-16 01:03:31 +02:00
@property
bool cacheReads();
2016-10-16 01:03:31 +02:00
}