Initialize Phase 0 monorepo skeleton (T-001)

This commit is contained in:
ila
2026-07-16 15:28:13 +08:00
parent 0184595ccc
commit cf9fc01c68
23 changed files with 151 additions and 74 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
import (
"fmt"
"softbox.local/core"
)
func main() {
fmt.Println(core.ProductName)
}
+8
View File
@@ -0,0 +1,8 @@
module softbox.local/app-win7
go 1.20
require (
gioui.org v0.6.0
softbox.local/core v0.0.0
)
+8
View File
@@ -0,0 +1,8 @@
go 1.20
use (
.
../core
)
replace softbox.local/core v0.0.0 => ../core
+1
View File
@@ -0,0 +1 @@
gioui.org v0.6.0/go.mod h1:eUvGo6FAzA7jUqeSu5a+M1W03yc9r1nanIBS8A5+Nng=
+2
View File
@@ -0,0 +1,2 @@
// Package windows contains Win7-compatible Windows platform adapters.
package windows
+2
View File
@@ -0,0 +1,2 @@
// Package gio contains the Win7-compatible Gio UI adapter.
package gio