| // Code generated by cdpgen. DO NOT EDIT. | |
| package database | |
| import ( | |
| "github.com/mafredri/cdp/rpcc" | |
| ) | |
| // AddDatabaseClient is a client for AddDatabase events. | |
| type AddDatabaseClient interface { | |
| // Recv calls RecvMsg on rpcc.Stream, blocks until the event is | |
| // triggered, context canceled or connection closed. | |
| Recv() (*AddDatabaseReply, error) | |
| rpcc.Stream | |
| } | |
| // AddDatabaseReply is the reply for AddDatabase events. | |
| type AddDatabaseReply struct { | |
| Database Database `json:"database"` // No description. | |
| } |