mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00: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
|
||
|
)
|