1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

publish: 5.11.1

This commit is contained in:
Steffo 2020-07-10 14:14:50 +02:00
parent 47bc6e136d
commit 2e09b0e30e
Signed by: steffo
GPG key ID: 896A80F55F7C97F0
4 changed files with 16 additions and 2 deletions

View file

@ -2,7 +2,7 @@
[tool.poetry]
name = "royalpack"
version = "5.11.0"
version = "5.11.1"
description = "A Royalnet command pack for the Royal Games community"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"

View file

@ -0,0 +1,10 @@
from typing import *
import royalnet
import royalnet.commands as rc
import abc
class LinkerCommand(rc.Command, metaclass=abc.ABCMeta):
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
...

View file

@ -70,6 +70,10 @@ class Steam:
"avatar": self.avatar,
"primary_clan_id": self.primary_clan_id,
"account_creation_date": self.account_creation_date.isoformat(),
"account_level": self.account_level,
"owned_games_count": self.owned_games_count,
"most_played_game_2weeks": self.most_played_game_2weeks,
"most_played_game_forever": self.most_played_game_forever,
"dota": self.dota.json() if self.dota is not None else None,
"brawlhalla": self.brawlhalla.json() if self.brawlhalla is not None else None

View file

@ -1 +1 @@
semantic = "5.11.0"
semantic = "5.11.1"