mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-02 22:17:10 +08:00
21 lines
379 B
JavaScript
21 lines
379 B
JavaScript
/**
|
|
* Copyright (c) Mainflux
|
|
*
|
|
* Mainflux server is licensed under an Apache license, version 2.0 license.
|
|
* All rights not explicitly granted in the Apache license, version 2.0 are reserved.
|
|
* See the included LICENSE file for more details.
|
|
*/
|
|
var mosca = require('mosca');
|
|
|
|
var config = {};
|
|
|
|
/**
|
|
* Mosca
|
|
*/
|
|
config.mosca = {
|
|
port: 1883,
|
|
}
|
|
|
|
|
|
module.exports = config;
|