diff --git a/camo-image-proxy.php b/camo-image-proxy.php
index 3833b1d7e796a6818a110c3eb1bf647838bd779f..53060188cd52fc5add5a1c020326a950d2045db6 100755
--- a/camo-image-proxy.php
+++ b/camo-image-proxy.php
@@ -26,6 +26,13 @@ require_once PLUGIN_PATH . '/inc/trait-singleton.php';
  */
 require_once PLUGIN_PATH . '/inc/class-options.php';
 
+/**
+ * Options page
+ */
+if ( is_admin() ) {
+	require_once PLUGIN_PATH . '/inc/class-options-page.php';
+}
+
 /**
  * Assorted functions
  */
diff --git a/inc/class-options-page.php b/inc/class-options-page.php
new file mode 100644
index 0000000000000000000000000000000000000000..8cabe869709dc2b5759e12be48e98f719fcf35a9
--- /dev/null
+++ b/inc/class-options-page.php
@@ -0,0 +1,12 @@
+<?php
+/**
+ * Plugin options page
+ *
+ * @package Camo_Image_Proxy
+ */
+
+namespace Camo_Image_Proxy;
+
+class Options_Page {
+	use Singleton;
+}