`AsyncFeatureFlagStoreProtocol`

This commit is contained in:
Yakov Manshin 2022-09-29 21:41:38 +00:00
parent 6658ee6812
commit df6a034bc5
No known key found for this signature in database
GPG Key ID: DA3328AA3609559B
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
//
// AsyncFeatureFlagStoreProtocol.swift
// YMFFProtocols
//
// Created by Yakov Manshin on 9/29/22.
// Copyright © 2022 Yakov Manshin. See the LICENSE file for license info.
//
public protocol AsyncFeatureFlagStoreProtocol {
func value<Value>(forKey key: String) async throws -> Value
}