diff --git a/.gx/lastpubver b/.gx/lastpubver
index ff0ee27..348f943 100644
--- a/.gx/lastpubver
+++ b/.gx/lastpubver
@@ -1 +1 @@
-0.2.2: QmRwCaRYotCqXsVZAXwWhEJ8A74iAaKnY7MUe6sDgFjrE5
+0.2.3: QmQSG7YCizeUH2bWatzp6uK9Vm3m7LA5jpxGa9QqgpNKw4
diff --git a/config.go b/config.go
index c1eefea..44b700f 100644
--- a/config.go
+++ b/config.go
@@ -25,6 +25,7 @@ type Config struct {
 	Gateway   Gateway   // local node's gateway server options
 	API       API       // local node's API settings
 	Swarm     SwarmConfig
+	Pubsub    PubsubConfig
 
 	Reprovider   Reprovider
 	Experimental Experiments
diff --git a/package.json b/package.json
index 097a9d5..cbdf87d 100644
--- a/package.json
+++ b/package.json
@@ -55,6 +55,5 @@
   "license": "",
   "name": "go-ipfs-config",
   "releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
-  "version": "0.2.2"
+  "version": "0.2.3"
 }
-
diff --git a/pubsub.go b/pubsub.go
new file mode 100644
index 0000000..da25b0f
--- /dev/null
+++ b/pubsub.go
@@ -0,0 +1,5 @@
+package config
+
+type PubsubConfig struct {
+	Router string
+}