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 (
"fmt"

View file

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

View file

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