diff --git a/.gitignore b/.gitignore index e6d5a4f..7bcbb49 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ gotube.exe *.mp4 *.txt -*.mp3 \ No newline at end of file +*.mp3 +.idea/* +.git \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b895f10 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/marethyu/gotube + +go 1.19 + +require golang.org/x/sync v0.1.0 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..595d314 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=