Initial commit

This commit is contained in:
2018-11-26 15:53:01 -06:00
commit 9891169704
3 changed files with 150 additions and 0 deletions

8
config.go Normal file
View File

@ -0,0 +1,8 @@
package precompiler
// Config holds information on how to run the compiler
type Config struct {
Files []string
Minify bool
OutputDir string
}