외부 의존성 추가: golang.org/x/net/proxygolang.org/x/time/rate 패키지 vendor 디렉토리에 추가
Some checks failed
Build Push and Restart Compose / deploy (push) Failing after 1m34s

This commit is contained in:
hayato5246
2026-04-01 22:06:46 +09:00
parent 6da3c65b77
commit 39579240c8
38 changed files with 5530 additions and 0 deletions

31
vendor/golang.org/x/net/proxy/direct.go generated vendored Normal file
View File

@@ -0,0 +1,31 @@
// Copyright 2011 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.
package proxy
import (
"context"
"net"
)
type direct struct{}
// Direct implements Dialer by making network connections directly using net.Dial or net.DialContext.
var Direct = direct{}
var (
_ Dialer = Direct
_ ContextDialer = Direct
)
// Dial directly invokes net.Dial with the supplied parameters.
func (direct) Dial(network, addr string) (net.Conn, error) {
return net.Dial(network, addr)
}
// DialContext instantiates a net.Dialer and invokes its DialContext receiver with the supplied parameters.
func (direct) DialContext(ctx context.Context, network, addr string) (net.Conn, error) {
var d net.Dialer
return d.DialContext(ctx, network, addr)
}