mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Model, belongsTo } from 'ember-cli-mirage';
|
|
|
|
export default Model.extend({
|
|
allocation: belongsTo(),
|
|
});
|