using System; using System.Collections.Generic; using System.Text; using ln.templates.html; namespace ln.templates { public interface ITemplateResolver { Template GetTemplateByPath(string path); } }