mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-20 16:54:25 +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)
|
|
}
|