twitchapon-anim

Basic Twitchapon Receiver/Visuals
git clone git://bsandro.tech/twitchapon-anim
Log | Files | Refs | README | LICENSE

commit 108e6d333581e777eaa20616d3737b84735021cf
parent 13385d7b8b91f4997be7e62f1060a54a126c217b
Author: bsandro <brian.drosan@gmail.com>
Date:   Sun,  9 May 2021 16:47:49 +0300

Exported project from Mercurial to Git

Diffstat:
A.gitignore | 6++++++
D.hgignore | 5-----
Mebitest.go | 6+++---
Mgo.mod | 2+-
4 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,6 @@ +assets.go +vendor +.DS_Store +*.swp +twitchapon-anim +twitchapon-anim.exe diff --git a/.hgignore b/.hgignore @@ -1,5 +0,0 @@ -ebitest$ -ebitest.exe$ -assets.go -# Default ignored files -.idea/ diff --git a/ebitest.go b/ebitest.go @@ -1,23 +1,23 @@ package main import ( - "io" _ "bytes" "errors" "fmt" "github.com/hajimehoshi/ebiten/v2" "github.com/hajimehoshi/ebiten/v2/ebitenutil" _ "image" + "image/color" _ "image/jpeg" _ "image/png" - "image/color" + "io" "log" "math" "math/rand" + "net/http" "os" "strconv" "time" - "net/http" ) const S_FRAMERATE = 60 diff --git a/go.mod b/go.mod @@ -1,4 +1,4 @@ -module bsandro.org/git/ebitest +module git.sr.ht/~bsandro/twitchapon-anim go 1.15