瀏覽代碼

🚧 create irrigation service

jmacura 3 年之前
父節點
當前提交
017c3be2c8
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      src/app/irrigation/irrigation.service.ts

+ 7 - 0
src/app/irrigation/irrigation.service.ts

@@ -0,0 +1,7 @@
+import { Injectable } from '@angular/core';
+import { HttpClient } from '@angular/common/http';
+
+@Injectable({providedIn: 'root'})
+export class IrrigationService {
+  constructor(private httpClient: HttpClient) {}
+}