mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
Change order of opts
This commit is contained in:
parent
a3c11d6c80
commit
67b7ae685c
1 changed files with 7 additions and 7 deletions
|
@ -21,6 +21,13 @@ require('dotenv').config()
|
|||
|
||||
const opts = {
|
||||
claims: {
|
||||
irc: {
|
||||
nick: process.env.IRC_NICK || null,
|
||||
},
|
||||
matrix: {
|
||||
instance: process.env.MATRIX_INSTANCE || null,
|
||||
accessToken: process.env.MATRIX_ACCESS_TOKEN || null,
|
||||
},
|
||||
xmpp: {
|
||||
service: process.env.XMPP_SERVICE || null,
|
||||
username: process.env.XMPP_USERNAME || null,
|
||||
|
@ -29,13 +36,6 @@ const opts = {
|
|||
twitter: {
|
||||
bearerToken: process.env.TWITTER_BEARER_TOKEN || null,
|
||||
},
|
||||
matrix: {
|
||||
instance: process.env.MATRIX_INSTANCE || null,
|
||||
accessToken: process.env.MATRIX_ACCESS_TOKEN || null,
|
||||
},
|
||||
irc: {
|
||||
nick: process.env.IRC_NICK || null,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue