实现基础web服务器

This commit is contained in:
2025-09-07 19:57:25 +08:00
parent f9bc4d6326
commit c377a0784d
1234 changed files with 548132 additions and 15 deletions

16
vendor/github.com/chenzhuoyu/base64x/native_amd64.go generated vendored Normal file
View File

@@ -0,0 +1,16 @@
//go:generate make
package base64x
import (
`unsafe`
)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
func __b64encode(out *[]byte, src *[]byte, mode int)
//go:nosplit
//go:noescape
//goland:noinspection GoUnusedParameter
func __b64decode(out *[]byte, src unsafe.Pointer, len int, mode int) (ret int)