Skip to content

Commit

Permalink
Merge pull request #68 from robertmin1/dump_stack_trace
Browse files Browse the repository at this point in the history
Dump stack trace : Includes process details -  PID, Process Name & Args
#63 & #64
  • Loading branch information
robertmin1 authored May 30, 2023
2 parents 97164d0 + ec07b0d commit e167ad9
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,17 @@ import (
"encoding/hex"
"errors"
"fmt"
go_log "log"
"math"
"net"
"os"
"os/exec"
"runtime"
"strconv"
"strings"
"sync"
"syscall"
"time"
"unsafe"

"github.com/hlandau/dexlogconfig"

Check failure on line 49 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L49

import 'github.com/hlandau/dexlogconfig' is not allowed from list 'Main' (depguard)

Check failure on line 49 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L49

import 'github.com/hlandau/dexlogconfig' is not allowed from list 'Main' (depguard)

Check failure on line 49 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L49

import 'github.com/hlandau/dexlogconfig' is not allowed from list 'Main' (depguard)

Check failure on line 49 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L49

import 'github.com/hlandau/dexlogconfig' is not allowed from list 'Main' (depguard)

Check failure on line 49 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L49

import 'github.com/hlandau/dexlogconfig' is not allowed from list 'Main' (depguard)

Check failure on line 49 in main.go

View check run for this annotation

Cirrus CI / Go Lint

main.go#L49

import 'github.com/hlandau/dexlogconfig' is not allowed from list 'Main' (depguard)
Expand Down Expand Up @@ -192,6 +195,11 @@ func HandleConnect(task strace.Task, record *strace.TraceRecord, program *exec.C
if IsAddressAllowed(address, cfg) { //nolint
log.Infof("Connecting to %v", IPPort)
} else {
// Dump Stack Trace and Process Information
if err := DumpStackTrace(record.PID); err != nil {
return err
}

if cfg.LogLeaks {
log.Warnf("Proxy Leak detected, but allowed : %v", IPPort)

Expand Down Expand Up @@ -530,6 +538,44 @@ func Socksify(args strace.SyscallArguments, record *strace.TraceRecord, t strace
return nil // Support more proxies
}

func DumpStackTrace(pid int) error {
// Create or open the log file in append mode
logFile, err := os.OpenFile("stack_trace.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) //nolint
if err != nil {
return err

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)

Check failure on line 545 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L545

error returned from external package is unwrapped: sig: func os.OpenFile(name string, flag int, perm io/fs.FileMode) (*os.File, error) (wrapcheck)
}

defer logFile.Close()
// Set the log output to the log file
go_log.SetOutput(logFile)

commPath := fmt.Sprintf("/proc/%d/cmdline", pid)

commBytes, err := os.ReadFile(commPath)
if err != nil {
return err

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)

Check failure on line 556 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L556

error returned from external package is unwrapped: sig: func os.ReadFile(name string) ([]byte, error) (wrapcheck)
}
// Split the contents by null byte to separate command and arguments
cmdline := strings.Split(string(commBytes), "\x00")

// Add a separator with date and time for the new instance of the program
separator := fmt.Sprintf("----------- New Instance: %s ------------", time.Now().Format("2006-01-02 15:04:05"))
go_log.Println(separator)

// Add the PID and Process Name and Args.
go_log.Printf("PID :%v", pid)
go_log.Printf("Program and Arguments:%v\n", cmdline)

// Get the stack trace
stack := make([]byte, 8192)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)

Check failure on line 570 in main.go

View check run for this annotation

Cirrus CI / Go Lint New

main.go#L570

mnd: Magic number: 8192, in <argument> detected (gomnd)
length := runtime.Stack(stack, true)

// Write the stack trace to the log file
go_log.Println(string(stack[:length]))

return nil
}

func (i FullAddress) String() string {
switch {
case i.IP == nil:
Expand Down

0 comments on commit e167ad9

Please sign in to comment.