mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 08:22:53 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
9 lines
236 B
Python
9 lines
236 B
Python
from nexus.models.proto.scimag_pb2 import Scimag as ScimagPb
|
|
|
|
from .base import BaseAction
|
|
|
|
|
|
class GoldenPostgresToThinScimagPbAction(BaseAction):
|
|
async def do(self, item: dict) -> ScimagPb:
|
|
return ScimagPb(doi=item['doi'])
|