Added functionality

lib
- Save
- DoAction
- ApplyDataset
- GetLayer(s)

main
- do actions from commandline

Improved test cases!
This commit is contained in:
Unknown
2018-03-08 11:38:00 -05:00
parent 36ccc26243
commit 9cbf0e9b92
9 changed files with 339 additions and 34 deletions

20
structs.go Normal file
View File

@@ -0,0 +1,20 @@
package ps
// type layer interface {
// Name() string
// TextItem() []string
// }
type ArtLayer struct {
Name string
TextItem string
Bounds [2][2]string
}
// func (a *ArtLayer) Name() string {
// return a.name
// }
// func (a *ArtLayer) TextItem() string {
// return a.textItem
// }