mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-23 00:38:28 +00:00
20 lines
323 B
Go
20 lines
323 B
Go
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
const WaveOSC = "23198"
|
|
|
|
func main() {
|
|
barr, err := os.ReadFile("/Users/mike/Downloads/2.png")
|
|
if err != nil {
|
|
fmt.Println("error reading file:", err)
|
|
return
|
|
}
|
|
fmt.Println("file size:", len(barr))
|
|
}
|