Implement calling GetFood from FE
This commit is contained in:
17
frontend/wailsjs/go/models.ts
Normal file
17
frontend/wailsjs/go/models.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
export namespace main {
|
||||
|
||||
export class Food {
|
||||
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new Food(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user