mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-13 00:22:49 +00:00
11 lines
142 B
Go
11 lines
142 B
Go
package build
|
|
|
|
type flags struct {
|
|
Production bool
|
|
}
|
|
|
|
// Flags is a global variable for build flags
|
|
var Flags = flags{
|
|
Production: false,
|
|
}
|