Remove mewn. Update templates. Remove logging.

This commit is contained in:
Lea Anthony
2021-04-02 16:56:25 +11:00
parent 57bbadf57b
commit 2659d9d0c2
17 changed files with 53 additions and 170 deletions

View File

@@ -1,7 +1,6 @@
package main
import (
"github.com/leaanthony/mewn"
"github.com/wailsapp/wails"
)
@@ -9,10 +8,13 @@ func basic() string {
return "Hello World!"
}
func main() {
//go:embed frontend/dist/app.js
var js string
js := mewn.String("./frontend/dist/app.js")
css := mewn.String("./frontend/dist/app.css")
//go:embed frontend/dist/app.css
var css string
func main() {
app := wails.CreateApp(&wails.AppConfig{
Width: 1024,