Update year in copyright lines
[Sone.git] / src / main / java / net / pterodactylus / sone / web / AllPages.kt
1 package net.pterodactylus.sone.web
2
3 import net.pterodactylus.sone.web.pages.AboutPage
4 import javax.inject.Inject
5
6 /**
7  * Container for all web pages. This uses field injection because there are way too many pages
8  * to sensibly use constructor injection.
9  */
10 class AllPages {
11
12         @Inject lateinit var aboutPage: AboutPage
13
14 }