Add merge ops (not yet import py api)

This commit is contained in:
pakintada@gmail.com 2023-09-19 15:21:08 +07:00
parent a6a7397dce
commit 850c483d5b
13 changed files with 220 additions and 1676 deletions

View file

@ -0,0 +1,12 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class MergeServiceService {
master_version: number = 0;
dev_version: number = 0;
constructor() { }
}