Changeset 98 in code for trunk/morty.go
- Timestamp:
- Oct 15, 2019, 10:06:09 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/morty.go
r97 r98 37 37 const VERSION = "v0.2.0" 38 38 39 var DEBUG = os.Getenv("DEBUG") 40 if DEBUG == "true" { 41 DEBUG = true 42 } else { 43 DEBUG = false 44 } 39 const DEBUG = os.Getenv("DEBUG") == "true" 45 40 46 41 var CLIENT *fasthttp.Client = &fasthttp.Client{
Note:
See TracChangeset
for help on using the changeset viewer.