well in my case i created a brand new project using worker assets and just compared it to my pages p
well in my case i created a brand new project using worker assets and just compared it to my pages project


import { DurableObject } from "cloudflare:workers";
export class Counter extends DurableObject<Env> {
async getCounterValue() {
const value: number = (await this.ctx.storage.get("value")) || 0;
return value;
}
}