mirror of
https://github.com/saily/vnc-recorder.git
synced 2025-06-28 14:36:58 +00:00
Cleanup imports
This commit is contained in:
parent
cf3d889ba7
commit
ca5c9212a0
7
main.go
7
main.go
@ -3,6 +3,8 @@ package main
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
vnc "github.com/amitbet/vnc2video"
|
||||
"github.com/amitbet/vnc2video/encoders"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"github.com/urfave/cli"
|
||||
"net"
|
||||
@ -10,11 +12,8 @@ import (
|
||||
"os/exec"
|
||||
"os/signal"
|
||||
"path"
|
||||
"strconv"
|
||||
"syscall"
|
||||
"time"
|
||||
vnc "github.com/amitbet/vnc2video"
|
||||
"github.com/amitbet/vnc2video/encoders"
|
||||
)
|
||||
|
||||
func init() {
|
||||
@ -186,7 +185,7 @@ func recorder(c *cli.Context) error {
|
||||
syscall.SIGHUP,
|
||||
syscall.SIGINT,
|
||||
syscall.SIGTERM,
|
||||
syscall.SIGQUIT, )
|
||||
syscall.SIGQUIT)
|
||||
frameBufferReq := 0
|
||||
timeStart := time.Now()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user