mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
17 lines
235 B
Go
17 lines
235 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"geekai/utils"
|
|
)
|
|
|
|
func main() {
|
|
file := "http://nk.img.r9it.com/chatgpt-plus/1719389335351828.xlsx"
|
|
content, err := utils.ReadFileContent(file)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(content)
|
|
}
|