mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-19 01:24:26 +00:00
6 lines
142 B
Go
6 lines
142 B
Go
package storage
|
|
|
|
type CloudStorage interface {
|
|
Save(name string, localPath string) (err error)
|
|
Load(name string) (data []byte, err error)
|
|
}
|