1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00

shared/termios: Fix gofumpt

Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
This commit is contained in:
Stéphane Graber
2025-03-17 18:07:14 -04:00
parent 5c249b0425
commit 11e8c4d69e

View File

@@ -6,8 +6,10 @@ import (
"golang.org/x/sys/unix"
)
const ioctlReadTermios = unix.TCGETS
const ioctlWriteTermios = unix.TCSETS
const (
ioctlReadTermios = unix.TCGETS
ioctlWriteTermios = unix.TCSETS
)
// State contains the state of a terminal.
type State struct {