mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 02:37:46 +08:00
17 lines
341 B
Go
17 lines
341 B
Go
package main
|
||
|
||
import (
|
||
"github.com/energye/energy/cef"
|
||
)
|
||
|
||
func main() {
|
||
//全局初始化 每个应用都必须调用的
|
||
cef.GlobalInit(nil, nil)
|
||
//创建应用
|
||
cefApp := cef.NewApplication()
|
||
//指定一个URL地址,或本地html文件目录
|
||
cef.BrowserWindow.Config.Url = "https://www.baidu.com"
|
||
//运行应用
|
||
cef.Run(cefApp)
|
||
}
|