Compare commits

..

No commits in common. "main" and "v1.0.1" have entirely different histories.
main ... v1.0.1

4 changed files with 1 additions and 36 deletions

View file

@ -1,30 +0,0 @@
name: goreleaser
on:
pull_request:
push:
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

View file

@ -159,4 +159,3 @@ func printbanner() {
`
fmt.Println(banner)
}

View file

@ -28,7 +28,7 @@ Run GoShoD:
## USAGE:
<img src="./GoShod.gif"/>
<img src="./GoShod.gif"/>
Configure Shodan API:

View file

@ -123,8 +123,6 @@ const app = new Vue({
},
nextPage(){
if(this.curPage<this.maxPage){
this.showLoading = true;
this.host_result={matches:[]}
this.curPage++;
var params = new URLSearchParams();
params.append("search",this.search);
@ -155,8 +153,6 @@ const app = new Vue({
},
prevPage(){
if(this.curPage>this.minPage){
this.showLoading = true;
this.host_result={matches:[]}
this.curPage--;
var params = new URLSearchParams();
params.append("search",this.search);