rename package

This commit is contained in:
ppom 2023-03-25 18:27:01 +01:00
parent 1efeddf183
commit 5dcbdd865e
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package reaction package app
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package reaction package app
import ( import (
"bufio" "bufio"

View File

@ -1,9 +1,9 @@
package main package main
import ( import (
"reaction/reaction" "reaction/app"
) )
func main() { func main() {
reaction.Main() app.Main()
} }