├── .whitesource ├── LICENSE ├── README.md ├── lastseen.go ├── lastseen_test.go ├── primes.go └── primes_test.go /.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "settingsInheritedFrom": "VividCortex/whitesource-config@master" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VividCortex/lastseen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VividCortex/lastseen/HEAD/README.md -------------------------------------------------------------------------------- /lastseen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VividCortex/lastseen/HEAD/lastseen.go -------------------------------------------------------------------------------- /lastseen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VividCortex/lastseen/HEAD/lastseen_test.go -------------------------------------------------------------------------------- /primes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VividCortex/lastseen/HEAD/primes.go -------------------------------------------------------------------------------- /primes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VividCortex/lastseen/HEAD/primes_test.go --------------------------------------------------------------------------------