diff --git a/cstyle/plugins/flex/main.go b/cstyle/plugins/flex/main.go
deleted file mode 100644
index 6ec66bf..0000000
--- a/cstyle/plugins/flex/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package flex
-
-import (
- "fmt"
- "gui/cstyle"
- "gui/element"
-)
-
-func Plugin() cstyle.Plugin {
- return cstyle.Plugin{
- Styles: map[string]string{
- "display": "inline",
- },
- Level: 0,
- Handler: func(n *element.Node) {
- fmt.Println("hi")
- },
- }
-}
package flex
import (
"fmt"
"gui/cstyle"
"gui/element"
)
func Plugin() cstyle.Plugin {
return cstyle.Plugin{
Styles: map[string]string{
"display": "inline",
},
Level: 0,
Handler: func(n *element.Node) {
fmt.Println("hi")
},
}
}