Skip to content

Package reorganisation

Compare
Choose a tag to compare
@vishy1618 vishy1618 released this 11 Oct 16:33
· 26 commits to master since this release

This release includes some package reorganisations. The following package structures have changed:

// Before:
use gcm::message::Message;
use gcm::message::response::{GcmError, GcmResponse};
use gcm::notification::{Notification, NotificationBuilder};

// After:
use gcm::{Message, Notification, NotificationBuilder, GcmError, GcmResponse};

// or more simply:
use gcm::*;