T-DEV-811/PocketBaseDataRepository.cs

27 lines
411 B
C#
Raw Normal View History

2023-03-21 09:59:44 +01:00
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Net;
using models;
using services;
using UnityEngine;
public class PocketBaseDataRepository : MonoBehaviour
{
void Start()
{
Trash t = TrashService.GetTrash("gdnuxl0wlgurtj3");
Debug.Log(t);
}
// Update is called once per frame
void Update()
{
}
}