mirror of
https://github.com/jixishi/SerialTerminalForWindowsTerminal.git
synced 2026-06-15 16:42:46 +00:00
8139162174
Consolidate remaining package main files into internal/termapp for clean separation: cmd/serialterminal/ is the sole entry point. Update .goreleaser.yaml to build from ./cmd/serialterminal. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
14 lines
179 B
Go
14 lines
179 B
Go
package termapp
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/jixishi/SerialTerminalForWindowsTerminal/internal/session"
|
|
)
|
|
|
|
var (
|
|
sess *session.SerialSession
|
|
out io.Writer = os.Stdout
|
|
)
|