Add a dev run main file
This commit is contained in:
parent
19b2fbc692
commit
59be529601
3 changed files with 15 additions and 3 deletions
3
main.go
3
main.go
|
@ -1,6 +1,3 @@
|
||||||
/*
|
|
||||||
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
|
|
||||||
*/
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
12
main_dev.go
Normal file
12
main_dev.go
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
//go:build devBuild
|
||||||
|
// +build devBuild
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.shadowhosting.xyz/shadow/cmd"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
cmd.Execute()
|
||||||
|
}
|
3
src/styles/editor.css
Normal file
3
src/styles/editor.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.editor-control-selected {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue