mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-28 13:48:49 +08:00
25 lines
594 B
Go
25 lines
594 B
Go
![]() |
/**
|
||
|
* Copyright (c) Mainflux
|
||
|
*
|
||
|
* FluxMQ is licensed under an Apache license, version 2.0.
|
||
|
* All rights not explicitly granted in the Apache license, version 2.0 are reserved.
|
||
|
* See the included LICENSE file for more details.
|
||
|
*/
|
||
|
|
||
|
package main
|
||
|
|
||
|
// Options block for gnatsd server.
|
||
|
type Options struct {
|
||
|
Host string
|
||
|
Port int
|
||
|
Trace bool
|
||
|
Debug bool
|
||
|
MaxConn int
|
||
|
Logtime bool
|
||
|
Authorization string
|
||
|
Username string
|
||
|
Password string
|
||
|
PidFile string
|
||
|
LogFile string
|
||
|
}
|