mirror of
https://github.com/cheat/cheat.git
synced 2026-05-27 19:48:44 +02:00
87e6142e27
Bumps [github.com/go-git/go-billy/v5](https://github.com/go-git/go-billy) from 5.7.0 to 5.9.0. - [Release notes](https://github.com/go-git/go-billy/releases) - [Commits](https://github.com/go-git/go-billy/compare/v5.7.0...v5.9.0) --- updated-dependencies: - dependency-name: github.com/go-git/go-billy/v5 dependency-version: 5.9.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
310 B
Go
14 lines
310 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build windows
|
|
|
|
package windows
|
|
|
|
import "syscall"
|
|
|
|
type Signal = syscall.Signal
|
|
type Errno = syscall.Errno
|
|
type SysProcAttr = syscall.SysProcAttr
|