EmulatorFCMClient sends FCM messages to the phone emulator via HTTP.
| 15 | |
| 16 | // EmulatorFCMClient sends FCM messages to the phone emulator via HTTP. |
| 17 | type EmulatorFCMClient struct { |
| 18 | httpClient *http.Client |
| 19 | endpoint string |
| 20 | logger telemetry.Logger |
| 21 | } |
| 22 | |
| 23 | // NewEmulatorFCMClient creates a new EmulatorFCMClient. |
| 24 | func NewEmulatorFCMClient(httpClient *http.Client, endpoint string, logger telemetry.Logger) *EmulatorFCMClient { |
nothing calls this directly
no outgoing calls
no test coverage detected