about summary refs log tree commit diff stats
path: root/tools/termbox/termbox.c
Commit message (Expand)AuthorAgeFilesLines
* 5800 - move `browse_trace` to `tools/` dirKartik Agaram2019-12-071-0/+397
6b0'>d6fbc25 ^
c831484 ^
d62c82f ^
893123c ^
1f8b2ce ^

1f8b2ce ^
920306c ^

893123c ^
8af4945 ^
920306c ^






f06a2d6 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

            
                      


                                           
 
                           
                           

                            
                          

                            
 
 






                                                       
 
package main

// content-type consts
const txtutf8 = "text/plain; charset=utf-8"
const htmlutf8 = "text/html; charset=utf-8"
const cssutf8 = "text/css; charset=utf-8"

// config object definition
type configuration struct {
	port          int
	logfile       string
	stdoutLogging bool
	version       string
	Instance
}

// Instance refers to this specific instance of getwtxt
type Instance struct {
	Name  string
	URL   string
	Owner string
	Mail  string
	Desc  string
}