Source

gom/cnProject.js

// $Id$
// @ts-check

"use strict";

import { RestServices } from "../tools/RestServices.js";
import { ApiResponse } from "../tools/ApiResponse.js";
import { Context } from "../infohub/Context.js";
import { cnObject } from "../gom/cnObject.js";
import { ProjectServices } from "../infohub/Project";

/**
 *
 *  @category COLNEO gom
 *
 *  @classdesc cnProject on infohub
 *
 */
export class cnProject extends cnObject {
  static className = "cnProject";

  constructor() {
    super();
  }
}

/**
 *
 *  @category COLNEO gom
 *
 */
export class cnProjectServices {
  /**
   * @param {Context} ctx - Context instance
   *
   */

  constructor(ctx) {
    this._ctx = ctx;
  }

  async getCoordModels() {
    return;
  }
}