8 lines
167 B
Swift
8 lines
167 B
Swift
import Fluent
|
|
import Foundation
|
|
|
|
func generateIdpAlias(appId: String, deviceId: String, serialNo: String) -> String {
|
|
return "\(appId):\(deviceId):\(serialNo)"
|
|
}
|
|
|