mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-31 11:52:41 +00:00
* ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * 🐛fix: errors unhandled * 🐛fix: ignore child process and add some "-" to the table head * 🐛fix: add printRoutesMessage for listener and listenTLS
17 lines
373 B
Go
17 lines
373 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package ole
|
|
|
|
import (
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
var (
|
|
modcombase = windows.NewLazySystemDLL("combase.dll")
|
|
modkernel32 = windows.NewLazySystemDLL("kernel32.dll")
|
|
modole32 = windows.NewLazySystemDLL("ole32.dll")
|
|
modoleaut32 = windows.NewLazySystemDLL("oleaut32.dll")
|
|
moduser32 = windows.NewLazySystemDLL("user32.dll")
|
|
)
|