Warning: session_start(): open(/var/lib/php/sessions/sess_nat1d3bf4q3pud5df9qckm7pga, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7 concept User { long userID; S name; toString { ret name; } } concept Channel { long channelID; S name; toString { ret name; } } sclass Reaction { User user; S emoji; } concept Line { long msgID; bool bot, isPrivate; Channel channel; User author; S text; new L reactions; } cmodule GLines > DynCRUD { // API User uniqUser(long userID) { ret uniq_sync User(+userID); } User uniqChannel(long channelID) { ret uniq_sync Channel(+channelID); } }