| import { Controller, Get } from "@nestjs/common"; | |
| import { FeatureService } from "./feature.service"; | |
| ("feature") | |
| export class FeatureController { | |
| constructor(private readonly featureService: FeatureService) {} | |
| ("/flags") | |
| getFeatureFlags() { | |
| return this.featureService.getFeatures(); | |
| } | |
| } | |