Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/auto-generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
with:
go-version-file: 'go.mod'

- name: Build singularity CLI
run: |
go build -o singularity .

- name: Initialize DB
run: |
singularity admin init
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sudo mv singularity-linux-amd64 /usr/local/bin/singularity
# Or build from source
git clone https://github.com/data-preservation-programs/singularity.git
cd singularity
go build -o singularity .
go build -o singularity singularity.go
```

### Basic Usage
Expand Down
1 change: 1 addition & 0 deletions api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ func (s *Server) setupRoutes(e *echo.Echo) {
e.POST("/api/wallet/create", s.toEchoHandler(s.walletHandler.CreateHandler))
e.POST("/api/wallet", s.toEchoHandler(s.walletHandler.ImportHandler))
e.GET("/api/wallet", s.toEchoHandler(s.walletHandler.ListHandler))
e.GET("/api/wallet/:address/balance", s.toEchoHandler(s.walletHandler.GetBalanceHandler))
e.POST("/api/wallet/:address/init", s.toEchoHandler(s.walletHandler.InitHandler))
e.DELETE("/api/wallet/:address", s.toEchoHandler(s.walletHandler.RemoveHandler))
e.PATCH("/api/wallet/:address", s.toEchoHandler(s.walletHandler.UpdateHandler))
Expand Down
151 changes: 151 additions & 0 deletions client/swagger/http/wallet/get_wallet_balance_parameters.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading