all.go 261 B

12345678910111213
  1. package drivers
  2. import (
  3. _ "github.com/IceWhaleTech/CasaOS/drivers/dropbox"
  4. _ "github.com/IceWhaleTech/CasaOS/drivers/google_drive"
  5. _ "github.com/IceWhaleTech/CasaOS/drivers/onedrive"
  6. )
  7. // All do nothing,just for import
  8. // same as _ import
  9. func All() {
  10. }