mirror of
https://github.com/Crocmagnon/gopher-the-number.git
synced 2024-11-22 07:58:01 +01:00
Remove unnecessary package
This commit is contained in:
parent
b39fee2be7
commit
0221dafe57
3 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
package lib
|
package main
|
||||||
|
|
||||||
func CheckGuess(guess, random int) (string, bool) {
|
func CheckGuess(guess, random int) (string, bool) {
|
||||||
if guess == random {
|
if guess == random {
|
|
@ -1,4 +1,4 @@
|
||||||
package lib
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
1
main.go
Normal file
1
main.go
Normal file
|
@ -0,0 +1 @@
|
||||||
|
package main
|
Loading…
Reference in a new issue