9 lines
153 B
Go
9 lines
153 B
Go
package precompiler
|
|
|
|
// Config holds information on how to run the compiler
|
|
type Config struct {
|
|
Files []string
|
|
Minify bool
|
|
OutputDir string
|
|
}
|