Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #127 from iden3/fix/gha-release-ios
Browse files Browse the repository at this point in the history
fix iOS release
  • Loading branch information
ed255 authored Jun 3, 2020
2 parents 5d3bb25 + 7e0caae commit b205db3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gomobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
mkdir -p /tmp/build
gomobile init
gomobile bind --target ios -o /tmp/build/Iden3mobile.framework
cd /tmp/build && zip Iden3mobile.framework.zip Iden3mobile.framework
cd /tmp/build && zip -r Iden3mobile.framework.zip Iden3mobile.framework
- name: Release framework
uses: actions/upload-release-asset@v1
Expand Down
2 changes: 2 additions & 0 deletions go/iden3mobile/eventmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ type eventToStore struct {
Err string
}

// Sender is an interface that sends events
type Sender interface {
Send(*Event)
}

type EventManager struct {
storage db.Storage
eventsStorage *db.StorageList
Expand Down

0 comments on commit b205db3

Please sign in to comment.