This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // file exists in go-ku/flag/flag.go | |
| package flag | |
| import "flag" | |
| // Flagset inherits the default FlagSet | |
| type Flagset struct { | |
| *flag.FlagSet | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| listen 443 ssl; | |
| server_name api.exampel.com; | |
| root "/home/vagrant/Code/stryve-api/public"; | |
| index index.html index.htm index.php; | |
| charset utf-8; |
NewerOlder