Add possibility to load templates from the filesystem
[Sone.git] / src / main / java / net / pterodactylus / sone / main / Loaders.java
1 package net.pterodactylus.sone.main;
2
3 import net.pterodactylus.util.template.Template;
4
5 import com.google.inject.ImplementedBy;
6
7 /**
8  * Defines loaders for resources that can be loaded from various locations.
9  *
10  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
11  */
12 @ImplementedBy(DefaultLoaders.class)
13 public interface Loaders {
14
15         Template loadTemplate(String path);
16
17 }