Add dummy variables to packages

Also commit latest sketches.cdr
This commit is contained in:
David Vogel 2023-06-22 10:14:04 +02:00
parent e3ea9126b4
commit 159bce4f12
7 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package input
// Dummy can be referenced in vugu files to prevent go from causing errors due to not used imports.
//
// Use it like this:
//
// _ = input.Dummy
var Dummy struct{}

View File

@ -0,0 +1,8 @@
package layout
// Dummy can be referenced in vugu files to prevent go from causing errors due to not used imports.
//
// Use it like this:
//
// _ = layout.Dummy
var Dummy struct{}

View File

@ -0,0 +1,8 @@
package navigation
// Dummy can be referenced in vugu files to prevent go from causing errors due to not used imports.
//
// Use it like this:
//
// _ = navigation.Dummy
var Dummy struct{}

View File

@ -0,0 +1,8 @@
package overlay
// Dummy can be referenced in vugu files to prevent go from causing errors due to not used imports.
//
// Use it like this:
//
// _ = overlay.Dummy
var Dummy struct{}

8
components/view/dummy.go Normal file
View File

@ -0,0 +1,8 @@
package view
// Dummy can be referenced in vugu files to prevent go from causing errors due to not used imports.
//
// Use it like this:
//
// _ = view.Dummy
var Dummy struct{}

8
icons/dummy.go Normal file
View File

@ -0,0 +1,8 @@
package icons
// Dummy can be referenced in vugu files to prevent go from causing errors due to not used imports.
//
// Use it like this:
//
// _ = icons.Dummy
var Dummy struct{}

Binary file not shown.