Turi Create  4.0
unity_server_options.hpp
1 /* Copyright © 2017 Apple Inc. All rights reserved.
2  *
3  * Use of this source code is governed by a BSD-3-clause license that can
4  * be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
5  */
6 #ifndef TURI_UNITY_SERVER_OPTIONS_HPP
7 #define TURI_UNITY_SERVER_OPTIONS_HPP
8 
9 #include <string>
10 
11 namespace turi {
12 
13 struct unity_server_options {
14  std::string log_file;
15  std::string root_path;
16  bool daemon = false;
17  size_t log_rotation_interval = 0;
18  size_t log_rotation_truncate = 0;
19 };
20 
21 
22 } // end of namespace turi
23 #endif