github.com/packtpublishing/learning-functional-programming-in-go@v0.0.0-20230130084745-8b849f6d58c4/Chapter07/func-param/config.toml (about)

     1  #@IgnoreInspection BashAddShebang
     2  
     3  # Port that the API listens on
     4  port = "8080"
     5  
     6  # Whether to log debug output to the log (set to true for debug purposes)
     7  log_debug_info = true
     8  
     9  # Buffer size (not currently used)
    10  initial_buffer_size = 20
    11  
    12  # Maximum number of concurrent connections (not currently used)
    13  max_concurrent_connections = 4
    14  
    15  # Maximum number that user is allowed to enter
    16  max_number = 256
    17  
    18  # Use number handler (to display number, optionally with FormatNumber applied) else display files in project root
    19  use_number_handler = true