Skip to content

Commit

Permalink
relocate node.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyangXYZ committed Feb 5, 2024
1 parent 3e8febf commit b97b12f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/core/nodes/node.ts → src/core/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
PKT_TYPE,
type StatsSubscribePayload,
type StatsReportPayload
} from '../typedefs'
} from './typedefs'

export class Node {
id: number = 0
Expand Down
2 changes: 1 addition & 1 deletion src/core/nodes/end_system.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Node } from './node'
import { Node } from '../node'
import { PKT_TYPE, type Message, type Packet, MSG_TYPE, type FlowMsgPayload, type Flow } from '../typedefs'

class EndSystem extends Node {
Expand Down
2 changes: 1 addition & 1 deletion src/core/nodes/five_g_gnb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Node } from './node'
import { Node } from '../node'

class FiveGBS extends Node {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion src/core/nodes/five_g_ue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Node } from './node'
import { Node } from '../node'

class FiveGUE extends Node {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion src/core/nodes/tsch.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Node } from './node'
import { Node } from '../node'

class TSCHNode extends Node {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion src/core/nodes/tsn.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Node } from './node'
import { Node } from '../node'

class TSNNode extends Node {
constructor() {
Expand Down

0 comments on commit b97b12f

Please sign in to comment.