mirror of
https://github.com/iyear/tdl
synced 2025-01-08 11:57:55 +08:00
eee2d1c546
* refactor(core): move storage package to core module * rename * lint
14 lines
203 B
Go
14 lines
203 B
Go
package key
|
|
|
|
import (
|
|
"github.com/iyear/tdl/core/storage/keygen"
|
|
)
|
|
|
|
func App() string {
|
|
return keygen.New("app")
|
|
}
|
|
|
|
func Resume(fingerprint string) string {
|
|
return keygen.New("resume", fingerprint)
|
|
}
|