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