Files
lambda/internal/config/config.go
2025-12-28 22:52:10 -05:00

10 lines
343 B
Go

package config
// Arguments given to program.
type Config struct {
Source Source // The source code given to the program.
Verbose bool // Whether or not to print debug logs.
Explanation bool // Whether or not to print an explanation of the reduction.
Profile string // If not nil, print a CPU profile during execution.
}