prototyped svg reports
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package svg
|
||||
|
||||
import "fmt"
|
||||
|
||||
type (
|
||||
Fill string
|
||||
)
|
||||
|
||||
func (Fill) PrintKey() string {
|
||||
return "fill"
|
||||
}
|
||||
|
||||
func (f Fill) PrintValue() (string, bool) {
|
||||
return fmt.Sprintf(`%q`, string(f)), true
|
||||
}
|
||||
Reference in New Issue
Block a user