mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-15 16:39:26 +01:00
11 lines
151 B
Go
11 lines
151 B
Go
|
package scanner
|
||
|
|
||
|
// Mode represents a scanner mode.
|
||
|
type Mode int
|
||
|
|
||
|
// List of scanner modes.
|
||
|
const (
|
||
|
ScanComments Mode = 1 << iota
|
||
|
DontInsertSemis
|
||
|
)
|