File: options.go

package info (click to toggle)
golang-github-abadojack-whatlanggo 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 444 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
8
package whatlanggo

// Options represents options that can be set when detecting a language or/and script such
// blacklisting languages to skip checking.
type Options struct {
	Whitelist map[Lang]bool
	Blacklist map[Lang]bool
}