10 lines
133 B
Python
10 lines
133 B
Python
from typing import Literal
|
|
|
|
|
|
def is_fbcode() -> Literal[False]:
|
|
return False
|
|
|
|
|
|
def is_prod() -> Literal[False]:
|
|
return False
|