Created
April 3, 2013 01:33
-
-
Save dgrijalva/5297752 to your computer and use it in GitHub Desktop.
Testing resulting sizes based on imports
This file contains 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
package main | |
import ( | |
"github.com/fitstar/falcore" | |
_ "github.com/fitstar/falcore/compression" | |
_ "github.com/fitstar/falcore/etag" | |
_ "github.com/fitstar/falcore/upstream" | |
_ "github.com/fitstar/falcore/static_file" | |
) | |
func main(){ | |
_ = falcore.NewServer(80, nil) | |
} |
This file contains 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
$ ls -l | |
total 14696 | |
-rwxr-xr-x 1 dgrijalva staff 3757320 Apr 2 18:31 lots | |
-rw-r--r--@ 1 dgrijalva staff 268 Apr 2 18:31 lots.go | |
-rwxr-xr-x 1 dgrijalva staff 3753224 Apr 2 18:29 single | |
-rw-r--r--@ 1 dgrijalva staff 102 Apr 2 18:29 single.go |
This file contains 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
package main | |
import ( | |
"github.com/fitstar/falcore" | |
) | |
func main(){ | |
_ = falcore.NewServer(80, nil) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment