mirror of
https://github.com/fumiama/gozel.git
synced 2026-06-05 00:10:24 +08:00
16 lines
163 B
Go
16 lines
163 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/fumiama/gozel/ze"
|
|
)
|
|
|
|
func main() {
|
|
hs, err := ze.InitGPUDrivers()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(hs)
|
|
}
|