Skip to content

Instantly share code, notes, and snippets.

View pfinnn's full-sized avatar
🛰️
Working from space station

pfinnn

🛰️
Working from space station
View GitHub Profile
@pfinnn
pfinnn / gist:3528c8933e01180f291c07d05aac46ba
Created September 15, 2021 08:24
Unity Visual Studio .gitignore
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
#
[Ll]ibrary/
[Tt]emp/
[Oo]bj/
[Bb]uild/
[Bb]uilds/
[Ll]ogs/
package circuitbreaker
import "errors"
type ICircuitBreaker interface {
Close()
Open()
isOpen() bool
isClosed() bool
GetThreshold() int