Add BarcodeColor interface
This commit is contained in:
parent
a8e67c5d16
commit
49d4ce8a5b
|
@ -1,6 +1,8 @@
|
||||||
package barcode
|
package barcode
|
||||||
|
|
||||||
import "image"
|
import (
|
||||||
|
"image"
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
TypeAztec = "Aztec"
|
TypeAztec = "Aztec"
|
||||||
|
@ -40,3 +42,7 @@ type BarcodeIntCS interface {
|
||||||
Barcode
|
Barcode
|
||||||
CheckSum() int
|
CheckSum() int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type BarcodeColor interface {
|
||||||
|
ColorScheme() ColorScheme
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue