mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
348 B
20 lines
348 B
export const USER_DATABASE = 'user';
|
|
export const TOPICS_DATABASE = 'topics';
|
|
export const POSTS_DATABASE = 'posts';
|
|
|
|
const databases = [
|
|
{
|
|
address: USER_DATABASE,
|
|
type: 'keyvalue',
|
|
},
|
|
{
|
|
address: TOPICS_DATABASE,
|
|
type: 'keyvalue',
|
|
},
|
|
{
|
|
address: POSTS_DATABASE,
|
|
type: 'keyvalue',
|
|
},
|
|
];
|
|
|
|
export default databases;
|
|
|