8 lines
187 B
Python
8 lines
187 B
Python
"""A transitive dependent used to prove reverse invalidation."""
|
|
|
|
from sample.service import Service
|
|
|
|
|
|
def execute(value: int) -> int:
|
|
worker = Service()
|
|
return worker.run(value)
|