some tests and initial json structure
This commit is contained in:
14
cmd/test/main.go
Normal file
14
cmd/test/main.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
xlsx "github.com/tealeg/xlsx/v3"
|
||||
)
|
||||
|
||||
func main() {
|
||||
xls, err := xlsx.OpenFile("../../test/gwb-rechner_5_0_4_vollbilanz.xlsx")
|
||||
fmt.Println("OpenFile err:", err)
|
||||
sl, err := xls.ToSlice()
|
||||
fmt.Printf("err: %v\n\n%#v", err, sl[1])
|
||||
}
|
||||
Reference in New Issue
Block a user