-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
64 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
syntax = "proto3"; | ||
package musicmodel.v1.boundary; | ||
|
||
option go_package = "boundary"; | ||
|
||
enum Boundary { | ||
NoBoundary = 0; | ||
Start = 1; | ||
End = 2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
syntax = "proto3"; | ||
package musicmodel.v1.measure; | ||
|
||
option go_package = "measure"; | ||
|
||
message TimeSignature { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
syntax = "proto3"; | ||
package musicmodel.v1.symbols.accidental; | ||
|
||
option go_package = "accidental"; | ||
|
||
enum Accidental { | ||
NoAccidental = 0; | ||
Sharp = 1; | ||
Flat = 2; | ||
Natural = 3; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
syntax = "proto3"; | ||
package musicmodel.v1.symbols; | ||
option go_package = "symbols"; | ||
|
||
import "musicmodel/v1/length/length.proto"; | ||
|
||
option go_package = "symbols"; | ||
|
||
message Rest { | ||
length.Length length = 1; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
syntax = "proto3"; | ||
package musicmodel.v1.symbols.tie; | ||
|
||
option go_package = "tie"; | ||
|
||
enum Tie { | ||
NoTie = 0; | ||
Start = 1; | ||
End = 2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
syntax = "proto3"; | ||
package musicmodel.v1.symbols.tuplet; | ||
option go_package = "tuplet"; | ||
|
||
import "musicmodel/v1/boundary/boundary.proto"; | ||
|
||
option go_package = "tuplet"; | ||
|
||
message Tuplet { | ||
boundary.Boundary boundary_type = 1; | ||
uint32 visible_notes = 2; | ||
uint32 played_notes = 3; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
syntax = "proto3"; | ||
package plugin.v1; | ||
option go_package = "plugin"; | ||
|
||
import "plugin/v1/messages/info.proto"; | ||
import "plugin/v1/messages/import.proto"; | ||
import "plugin/v1/messages/info.proto"; | ||
|
||
option go_package = "plugin"; | ||
|
||
service PluginService { | ||
rpc PluginInfo (v1.messages.PluginInfoRequest) returns (v1.messages.PluginInfoResponse) {} | ||
rpc PluginInfo(v1.messages.PluginInfoRequest) returns (v1.messages.PluginInfoResponse) {} | ||
|
||
// ImportFile imports a file into the plugin | ||
// When the filetype is not supported by the plugin it returns an UNIMPLEMENTED error | ||
rpc ImportFile (v1.messages.ImportFileRequest) returns (v1.messages.ImportFileResponse) {} | ||
} | ||
rpc ImportFile(v1.messages.ImportFileRequest) returns (v1.messages.ImportFileResponse) {} | ||
} |